Toggle navigation
Toggle navigation
This project
Loading...
Sign in
홍길동
/
onos
Go to a project
Toggle navigation
Toggle navigation pinning
Projects
Groups
Snippets
Help
Project
Activity
Repository
Pipelines
Graphs
Issues
0
Merge Requests
0
Wiki
Snippets
Network
Create a new issue
Builds
Commits
Issue Boards
Authored by
Yuta HIGUCHI
2014-09-26 16:30:53 -0700
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
22e0f2f946cbc4573810ee1995f0a1f49ef6872b
22e0f2f9
1 parent
14dc4d01
MastershipTerm should be immutable
Change-Id: Ifc7484caa80fa21b2b4594389dec5c4d0c112c0f
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 additions
and
1 deletions
core/api/src/main/java/org/onlab/onos/cluster/MastershipTerm.java
core/api/src/main/java/org/onlab/onos/cluster/MastershipTerm.java
View file @
22e0f2f
...
...
@@ -5,7 +5,7 @@ import java.util.Objects;
public
final
class
MastershipTerm
{
private
final
NodeId
master
;
private
int
termNumber
;
private
final
int
termNumber
;
private
MastershipTerm
(
NodeId
master
,
int
term
)
{
this
.
master
=
master
;
...
...
Please
register
or
login
to post a comment