Update of /cvsroot/webmacro/webmacro/src-optional/org/opendoors/util
In directory sc8-pr-cvs9.sourceforge.net:/tmp/cvs-serv1127/src-optional/org/opendoors/util
Modified Files:
Timer.java
Log Message:
Access static method statically
Index: Timer.java
===================================================================
RCS file: /cvsroot/webmacro/webmacro/src-optional/org/opendoors/util/Timer.java,v
retrieving revision 1.2
retrieving revision 1.3
diff -C2 -d -r1.2 -r1.3
*** Timer.java 28 Jan 2008 16:02:51 -0000 1.2
--- Timer.java 14 Mar 2008 16:00:40 -0000 1.3
***************
*** 154,158 ****
try
{
! timerThread.sleep(period);
}
catch (InterruptedException e)
--- 154,158 ----
try
{
! Thread.sleep(period);
}
catch (InterruptedException e)
|