--- jsr166/src/jsr166y/ForkJoinPool.java 2010/08/17 18:30:32 1.64 +++ jsr166/src/jsr166y/ForkJoinPool.java 2010/08/18 14:05:27 1.65 @@ -1855,11 +1855,11 @@ public class ForkJoinPool extends Abstra * QueueTaker(BlockingQueue q) { this.queue = q; } * public boolean block() throws InterruptedException { * if (item == null) - * item = queue.take + * item = queue.take(); * return true; * } * public boolean isReleasable() { - * return item != null || (item = queue.poll) != null; + * return item != null || (item = queue.poll()) != null; * } * public E getItem() { // call after pool.managedBlock completes * return item;