diff options
author | Noel Grandin <noel@peralex.com> | 2014-10-16 13:02:45 +0200 |
---|---|---|
committer | Noel Grandin <noel@peralex.com> | 2014-10-17 08:26:21 +0200 |
commit | 03c7c26cbe7d75f103515e62dc39103f11d4637f (patch) | |
tree | d2e3e75fd84ce6fcb58c3ccbb59d5a1a62990c47 /nlpsolver | |
parent | 12b01b920f42666db84c8be1c9b6fd89a86eea4e (diff) |
java: final fields that can be static
Change-Id: I8c06be7bc0b8a38c662209f0de72a00550e25447
Diffstat (limited to 'nlpsolver')
-rw-r--r-- | nlpsolver/src/com/sun/star/comp/Calc/NLPSolver/dialogs/EvolutionarySolverStatusUno.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/nlpsolver/src/com/sun/star/comp/Calc/NLPSolver/dialogs/EvolutionarySolverStatusUno.java b/nlpsolver/src/com/sun/star/comp/Calc/NLPSolver/dialogs/EvolutionarySolverStatusUno.java index aa9f46d1f3ad..024e90978205 100644 --- a/nlpsolver/src/com/sun/star/comp/Calc/NLPSolver/dialogs/EvolutionarySolverStatusUno.java +++ b/nlpsolver/src/com/sun/star/comp/Calc/NLPSolver/dialogs/EvolutionarySolverStatusUno.java @@ -67,7 +67,7 @@ public class EvolutionarySolverStatusUno extends BaseDialog private final ResourceManager resourceManager; - private final int COLOR_RED = 0xFF0000; + private static final int COLOR_RED = 0xFF0000; public EvolutionarySolverStatusUno(XComponentContext xContext) { super(xContext, "Solver Status", -1, -1, 170, 95); //center the dialog on the parent |