From 58d32302c61124e422a55cb68b2979550603185a Mon Sep 17 00:00:00 2001 From: Michael Bayne Date: Wed, 20 Nov 2002 05:32:51 +0000 Subject: [PATCH] Note in the documentation that tick stamps are no longer comparable to calls to System.currentTimeMillis(). git-svn-id: svn+ssh://src.earth.threerings.net/narya/trunk@1975 542714f4-19e9-0310-aa3c-eee0fc999fb1 --- src/java/com/threerings/media/AbstractMedia.java | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/src/java/com/threerings/media/AbstractMedia.java b/src/java/com/threerings/media/AbstractMedia.java index 7024a72b1..d4b6cbb2e 100644 --- a/src/java/com/threerings/media/AbstractMedia.java +++ b/src/java/com/threerings/media/AbstractMedia.java @@ -1,5 +1,5 @@ // -// $Id: AbstractMedia.java,v 1.4 2002/11/14 00:07:35 ray Exp $ +// $Id: AbstractMedia.java,v 1.5 2002/11/20 05:32:51 mdb Exp $ package com.threerings.media; @@ -35,7 +35,10 @@ public abstract class AbstractMedia * Called periodically by this media's manager to give it * a chance to do its thing. * - * @param tickStamp the system time for this tick. + * @param tickStamp a time stamp associated with this tick. + * Note: this is not obtained from a call to {@link + * System#currentTimeMillis} and cannot be compared to timestamps + * obtained there from. */ public abstract void tick (long tickStamp);