Oops. Here it goes.
Wolfram Rittmeyer wrote:
Hi Jordi,
I'd like to test it this evening on my Linux-Box running Suns jdk1.4. Would
be nice if you could send the attachment, mentioned in your mail, since it
seems not to be attached yet ;-)
Greetings,
Wolfram
--
To unsubscribe, e-mail: <mailto:[EMAIL PROTECTED]>
For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>
public class TestClock {
public static void main(String args[]) {
new TestClock().run();
}
public void run() {
long lastTime= System.currentTimeMillis();
for (int n=0;;n++) {
long time= System.currentTimeMillis();
if (time<lastTime) {
System.out.println("lastTime="+lastTime+", time="+time+", n="+n);
}
lastTime= time;
}
}
}
--
To unsubscribe, e-mail: <mailto:[EMAIL PROTECTED]>
For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>