Moved constants to inner class as they were only being used inside that class
FEA: ItEr76S15OrganizingPerProjectDashboard
This commit is contained in:
parent
dc4da28f90
commit
24f926b6cc
1 changed files with 6 additions and 6 deletions
|
|
@ -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) {
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue