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 @Override
public String toString() { public String toString() {
return String.format( 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, activePool, maxActivePool,
(((double) activePool / (double) maxActivePool) * 100.0), (((double) activePool / (double) maxActivePool) * 100.0),
(((double) activePool / (double) maxOverActivePool) * 100.0), (((double) activePool / (double) maxOverActivePool) * 100.0),
waitingPool, waitingPool,
blocks, blocks
notifies
); );
} }