aboutsummaryrefslogtreecommitdiffstats
path: root/jdisc_core/src
diff options
context:
space:
mode:
authorJon Bratseth <jonbratseth@yahoo.com>2017-06-29 14:39:03 +0200
committerGitHub <noreply@github.com>2017-06-29 14:39:03 +0200
commita69ec87717c256caeda4c44e519340c06fac9849 (patch)
tree65036debaa688bb4472dff7f1a680a0029a09fba /jdisc_core/src
parent8e2e549492cbc7241261fb80b4c266647ce84623 (diff)
parentf3f5cdab4931b42eafceee0402c896efc199aa2a (diff)
Merge pull request #2901 from yahoo/bratseth/make-curatormutex-reusable
Bratseth/make curatormutex reusable
Diffstat (limited to 'jdisc_core/src')
-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();
+
}