--- jsr166/src/test/tck/CountedCompleterTest.java 2016/08/29 19:13:16 1.28 +++ jsr166/src/test/tck/CountedCompleterTest.java 2016/09/12 17:49:12 1.29 @@ -1880,7 +1880,7 @@ public class CountedCompleterTest extend public void compute() { if (hi - lo >= 2) { int mid = (lo + hi) >>> 1; - setPendingCount(1); // not off by one ! + setPendingCount(1); // looks off by one, but correct! new Task(this, mid, hi).fork(); // right child new Task(this, lo, mid).compute(); // direct invoke } else {