fix recursion bug after token pool refactoring

This commit is contained in:
Jonathan Shook 2020-12-22 12:54:39 -06:00
parent aaf3acdc13
commit 0e1658a567

View File

@ -258,7 +258,6 @@ public class ThreadDrivenTokenPool implements TokenPool {
long wait = activePool + waitingPool;
activePool = 0L;
waitingPool = 0L;
filler.restart();
return wait;
}