--- jsr166/src/test/tck/LongAccumulatorTest.java 2015/04/25 04:55:31 1.5 +++ jsr166/src/test/tck/LongAccumulatorTest.java 2015/10/16 16:32:15 1.6 @@ -42,7 +42,7 @@ public class LongAccumulatorTest extends } /** - * reset zeroes get + * reset() causes subsequent get() to return zero */ public void testReset() { LongAccumulator ai = new LongAccumulator(Long::max, 0L); @@ -53,7 +53,7 @@ public class LongAccumulatorTest extends } /** - * getThenReset returns get then zeros + * getThenReset() returns current value; subsequent get() returns zero */ public void testGetThenReset() { LongAccumulator ai = new LongAccumulator(Long::max, 0L);