--- jsr166/src/jsr166y/RecursiveTask.java 2009/07/22 19:04:11 1.6 +++ jsr166/src/jsr166y/RecursiveTask.java 2009/07/31 16:25:40 1.9 @@ -36,9 +36,10 @@ package jsr166y; * @author Doug Lea */ public abstract class RecursiveTask extends ForkJoinTask { + private static final long serialVersionUID = 5232453952276485270L; /** - * The result returned by compute method. + * The result of the computation. */ V result; @@ -56,7 +57,7 @@ public abstract class RecursiveTask e } /** - * Implements execution conventions for RecursiveTask + * Implements execution conventions for RecursiveTask. */ protected final boolean exec() { result = compute();