commit | 85d7470a422b0d832f31dbc9a6dda7c857b891ac | [log] [tgz] |
---|---|---|
author | Yuta HIGUCHI <y-higuchi@onlab.us> | Thu Oct 16 13:54:43 2014 -0700 |
committer | Yuta HIGUCHI <y-higuchi@onlab.us> | Thu Oct 16 13:54:43 2014 -0700 |
tree | a4e075c676e12e459fdc3345cdba6d3f3f2d138d | |
parent | dd841b79cab3a169f6330520ec2248071d176c71 [diff] |
Javadoc + checkstyle warning fix. Change-Id: I0e6cabb4bdc5a81f98107df69af9295efa60e676
diff --git a/core/store/dist/src/main/java/org/onlab/onos/store/common/impl/Timestamped.java b/core/store/dist/src/main/java/org/onlab/onos/store/common/impl/Timestamped.java index 8d2aee1..de696eb 100644 --- a/core/store/dist/src/main/java/org/onlab/onos/store/common/impl/Timestamped.java +++ b/core/store/dist/src/main/java/org/onlab/onos/store/common/impl/Timestamped.java
@@ -58,12 +58,12 @@ } /** - * Tests if this timestamp is newer thatn the specified timestamp. - * @param timestamp to compare agains + * Tests if this timestamp is newer than the specified timestamp. + * @param other timestamp to compare against * @return true if this instance is newer */ - public boolean isNewer(Timestamp timestamp) { - return this.timestamp.compareTo(checkNotNull(timestamp)) > 0; + public boolean isNewer(Timestamp other) { + return this.timestamp.compareTo(checkNotNull(other)) > 0; } @Override