summaryrefslogtreecommitdiffstats
path: root/jdisc_core
diff options
context:
space:
mode:
authorJon Bratseth <bratseth@yahoo-inc.com>2017-06-28 13:03:46 +0200
committerJon Bratseth <bratseth@yahoo-inc.com>2017-06-28 13:03:46 +0200
commit0229966296d14040a3dfdf7003271adc7fdf7fc0 (patch)
tree0107be1ac535991270742cd03a4a827f9235a6b9 /jdisc_core
parentbadf90c93ec1a7b0a6c12a41a21b2030d01d9df5 (diff)
Nonfunctional changes only
Diffstat (limited to 'jdisc_core')
-rw-r--r--jdisc_core/src/main/java/com/yahoo/jdisc/Timer.java5
1 files changed, 3 insertions, 2 deletions
diff --git a/jdisc_core/src/main/java/com/yahoo/jdisc/Timer.java b/jdisc_core/src/main/java/com/yahoo/jdisc/Timer.java
index dfe821ca0e6..c94ebc1ab93 100644
--- a/jdisc_core/src/main/java/com/yahoo/jdisc/Timer.java
+++ b/jdisc_core/src/main/java/com/yahoo/jdisc/Timer.java
@@ -9,7 +9,7 @@ import com.yahoo.jdisc.core.SystemTimer;
* instance of this class into any component that needs to access time, instead of using
* <code>System.currentTimeMillis()</code>.</p>
*
- * @author <a href="mailto:simon@yahoo-inc.com">Simon Thoresen</a>
+ * @author Simon Thoresen
*/
@ImplementedBy(SystemTimer.class)
public interface Timer {
@@ -25,5 +25,6 @@ public interface Timer {
* @return The difference, measured in milliseconds, between the current time and midnight, January 1, 1970 UTC.
* @see java.util.Date
*/
- public long currentTimeMillis();
+ long currentTimeMillis();
+
}