Minor - remove private method that's not used.

This commit is contained in:
Heng Sin Low 2012-12-03 14:59:55 +08:00
parent db154e11b7
commit 75c8695aa8
1 changed files with 0 additions and 16 deletions

View File

@ -120,22 +120,6 @@ class Base
return used;
} // getMemoryUsed
/**
* Sleep for a second
*/
private static void sleep()
{
System.out.println(".. sleeping-ini .. -> " + Thread.activeCount());
Thread.yield();
try
{
Thread.sleep(1000);
}
catch (final InterruptedException ie)
{}
System.out.println(".. sleeping-end .. -> " + Thread.activeCount());
} // sleep
/**
* List Threads
*/