#1738 - Refactor add final, Object.equals, Integer.compare

This commit is contained in:
rob bygrave
2019-06-29 00:23:12 +12:00
parent 8bfae9deef
commit 7fa5e2aa8c
52 changed files with 102 additions and 120 deletions
@@ -18,9 +18,9 @@ public enum DeleteMode {
*/
HARD(PersistRequest.Type.DELETE_PERMANENT, true);
private boolean hard;
private final boolean hard;
private PersistRequest.Type persistType;
private final PersistRequest.Type persistType;
DeleteMode(PersistRequest.Type persistType, boolean hard) {
this.persistType = persistType;