Moved constants to inner class as they were only being used inside that class

FEA: ItEr76S15OrganizingPerProjectDashboard
This commit is contained in:
Diego Pino 2012-05-09 13:28:40 +02:00
parent dc4da28f90
commit 24f926b6cc

View file

@ -1191,12 +1191,6 @@ public class OrderPlanningModel implements IOrderPlanningModel {
});
}
// Soft green
public static final String COLOR_ASSIGNED_LOAD_GLOBAL = "#E0F3D3";
// Soft red
public static final String COLOR_OVERLOAD_GLOBAL = "#FFD4C2";
/**
*
* @author Óscar González Fernández <ogonzalez@igalia.com>
@ -1207,6 +1201,12 @@ public class OrderPlanningModel implements IOrderPlanningModel {
*/
private class OrderLoadChartFiller extends LoadChartFiller {
// Soft green
private static final String COLOR_ASSIGNED_LOAD_GLOBAL = "#E0F3D3";
// Soft red
private static final String COLOR_OVERLOAD_GLOBAL = "#FFD4C2";
private final Order order;
public OrderLoadChartFiller(Order orderReloaded) {