https://sourceforge.net/p/hsqldb/svn/HEAD/tree/base/trunk/src/org/hsqldb/lib/CountUpDownLatch.java
$d should be %d
throw new ArithmeticException(
String.format("integer overflow: %d + $d", c, amount));
Should be
throw new ArithmeticException(
String.format("integer overflow: %d + %dd", c, amount));
Bugger... typoed the should be:
-kurt
Engineer at Google
Thanks for reporting. I have simply removed the second params and its placeholder. Committing now to SVN /branches/dev-three