MastershipTerm should be immutable
Change-Id: Ifc7484caa80fa21b2b4594389dec5c4d0c112c0f
Showing
1 changed file
with
1 additions
and
1 deletions
... | @@ -5,7 +5,7 @@ import java.util.Objects; | ... | @@ -5,7 +5,7 @@ import java.util.Objects; |
5 | public final class MastershipTerm { | 5 | public final class MastershipTerm { |
6 | 6 | ||
7 | private final NodeId master; | 7 | private final NodeId master; |
8 | - private int termNumber; | 8 | + private final int termNumber; |
9 | 9 | ||
10 | private MastershipTerm(NodeId master, int term) { | 10 | private MastershipTerm(NodeId master, int term) { |
11 | this.master = master; | 11 | this.master = master; | ... | ... |
-
Please register or login to post a comment