--- jsr166/src/jsr166y/RecursiveTask.java 2009/07/20 22:40:09 1.4 +++ jsr166/src/jsr166y/RecursiveTask.java 2009/07/31 16:25:40 1.9 @@ -32,17 +32,14 @@ package jsr166y; * minimum granularity size (for example 10 here) for which you always * sequentially solve rather than subdividing. * + * @since 1.7 + * @author Doug Lea */ public abstract class RecursiveTask extends ForkJoinTask { + private static final long serialVersionUID = 5232453952276485270L; /** - * Empty constructor for use by subclasses. - */ - protected RecursiveTask() { - } - - /** - * The result returned by compute method. + * The result of the computation. */ V result; @@ -60,7 +57,7 @@ public abstract class RecursiveTask e } /** - * Implements execution conventions for RecursiveTask + * Implements execution conventions for RecursiveTask. */ protected final boolean exec() { result = compute();