mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-26 19:06:24 +07:00
make private fields final
This commit is contained in:
+2
-2
@@ -25,8 +25,8 @@ import java.util.Map;
|
||||
* @noinspection HardCodedStringLiteral
|
||||
*/
|
||||
public class ComparisonDetailsExtractor {
|
||||
private static Map EXPECTED = new HashMap();
|
||||
private static Map ACTUAL = new HashMap();
|
||||
private static final Map EXPECTED = new HashMap();
|
||||
private static final Map ACTUAL = new HashMap();
|
||||
protected String myActual = "";
|
||||
protected String myExpected = "";
|
||||
private final Throwable myAssertion;
|
||||
|
||||
@@ -33,8 +33,8 @@ public class ComparisonFailureData {
|
||||
private final String myFilePath;
|
||||
private final String myActualFilePath;
|
||||
|
||||
private static Map EXPECTED = new HashMap();
|
||||
private static Map ACTUAL = new HashMap();
|
||||
private static final Map EXPECTED = new HashMap();
|
||||
private static final Map ACTUAL = new HashMap();
|
||||
|
||||
static {
|
||||
try {
|
||||
|
||||
Reference in New Issue
Block a user