forked from I2P_Developers/i2p.i2p
Unmodified cybergarage-upnp from github rev 9499b03 2015-02-05 https://github.com/cybergarage/cybergarage-upnp/commits/master which is the same as rev 3ed1af9 2014-07-28 except for the addition of README.md which we aren't using. This is post-version 3.0. Omitted files: router/java/src/org/cybergarage/xml/parser/XercesParser.java router/java/src/org/cybergarage/xml/parser/XmlPullParser.java router/java/src/org/cybergarage/xml/parser/kXML2Parser.java chmod all files back to 644. Diverging from 2.1 checkin rev 59eae97dbb470d8c4a1e4dba3a9763e134bb0c53 in prep for merging. License unchanged. Compile tested only.
38 lines
631 B
Java
38 lines
631 B
Java
/******************************************************************
|
|
*
|
|
* CyberUtil for Java
|
|
*
|
|
* Copyright (C) Satoshi Konno 2002-2003
|
|
*
|
|
* File: TimerUtil.java
|
|
*
|
|
* Revision:
|
|
*
|
|
* 01/15/03
|
|
* - first revision.
|
|
*
|
|
******************************************************************/
|
|
|
|
package org.cybergarage.util;
|
|
|
|
public final class TimerUtil
|
|
{
|
|
public final static void wait(int waitTime)
|
|
{
|
|
try {
|
|
Thread.sleep(waitTime);
|
|
}
|
|
catch (Exception e) {}
|
|
}
|
|
|
|
public final static void waitRandom(int time)
|
|
{
|
|
int waitTime = (int)(Math.random() * (double)time);
|
|
try {
|
|
Thread.sleep(waitTime);
|
|
}
|
|
catch (Exception e) {}
|
|
}
|
|
}
|
|
|