1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-07-03 07:05:24 +02:00

slowing down element remover..making it wait longer because it doesn't need to run so frequently.

This commit is contained in:
David McKnight 2007-04-16 12:49:20 +00:00
parent 18f3cca4b0
commit 12f289f910

View file

@ -179,7 +179,7 @@ public class DataElementRemover extends Handler
{
try
{
Thread.sleep(_waitIncrement);
Thread.sleep(100000); // wait 100 seconds
Thread.yield();
}
catch (InterruptedException e)