revert unecessary changes

This commit is contained in:
Jacky 2017-12-20 18:55:34 -05:00
parent 4e3a2d8fe5
commit e891c44e26

View File

@ -102,11 +102,5 @@ abstract public class LongRunningProcess extends Process {
} }
} }
public void join(int millesec) throws InterruptedException {
if (_thread == null)
return;
_thread.join(millesec);
}
abstract protected Runnable getRunnable(); abstract protected Runnable getRunnable();
} }