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
Madan Jampani
2015-06-04 20:16:12 -0700
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
a862046a835d143e12cc05cd4a31b5368c3f8b17
a862046a
1 parent
adea8902
Fix constructor in Versioned
Change-Id: Iab745c7f55b948163676de1383b5ce409e0b85a0
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 additions
and
1 deletions
core/api/src/main/java/org/onosproject/store/service/Versioned.java
core/api/src/main/java/org/onosproject/store/service/Versioned.java
View file @
a862046
...
...
@@ -41,7 +41,7 @@ public class Versioned<V> {
public
Versioned
(
V
value
,
long
version
,
long
creationTime
)
{
this
.
value
=
value
;
this
.
version
=
version
;
this
.
creationTime
=
System
.
currentTimeMillis
()
;
this
.
creationTime
=
creationTime
;
}
/**
...
...
Please
register
or
login
to post a comment