fix high-centered changes after merge

This commit is contained in:
Jonathan Shook 2021-09-24 05:05:18 -05:00
parent 98ad978063
commit 14859b09cb

View File

@ -240,13 +240,12 @@ public class ThreadDrivenTokenPool implements TokenPool {
@Override
public String toString() {
return String.format(
"{ active:%d, max:%d, fill:'(%,3.1f%%)A (%,3.1f%%)B', wait_ns:%,d, blocks:%,d, notifies:%,d}",
"{ active:%d, max:%d, fill:'(%,3.1f%%)A (%,3.1f%%)B', wait_ns:%,d, blocks:%,d }",
activePool, maxActivePool,
(((double) activePool / (double) maxActivePool) * 100.0),
(((double) activePool / (double) maxOverActivePool) * 100.0),
waitingPool,
blocks,
notifies
blocks
);
}