Change shutdown() to something less likely to collide with methods call from

within intervals (as Interval.shutdown() will now silently hide any shutdown()
method in an outer class that an Interval may have previously been calling in
expired()).


git-svn-id: https://samskivert.googlecode.com/svn/trunk@1962 6335cc39-0255-0410-8fd6-9bcaacd3b74c
This commit is contained in:
mdb
2006-10-24 22:02:54 +00:00
parent 9f9b4cde72
commit 133df16238
+1 -1
View File
@@ -55,7 +55,7 @@ public abstract class Interval
* should call this method in its own destroy method. A new timer thread
* will then be created the next time an interval is scheduled.
*/
public static synchronized void shutdown ()
public static synchronized void resetTimer ()
{
_timer = null;
}