--- jsr166/src/jsr166y/ForkJoinTask.java 2010/10/24 19:37:26 1.66 +++ jsr166/src/jsr166y/ForkJoinTask.java 2010/11/21 14:43:27 1.67 @@ -832,6 +832,12 @@ public abstract class ForkJoinTask im * under any other usage conditions are not guaranteed. * This method may be useful when executing * pre-constructed trees of subtasks in loops. + * + *

Upon completion of this method, {@code isDone()} reports + * {@code false}, and {@code getException()} reports {@code + * null}. However, the value returned by {@code getRawResult} is + * unaffected. To clear this value, you can invoke {@code + * setRawResult(null)}. */ public void reinitialize() { if (status == EXCEPTIONAL)