--- jsr166/src/jsr166y/RecursiveTask.java 2009/07/22 01:36:51 1.5 +++ jsr166/src/jsr166y/RecursiveTask.java 2009/07/31 16:25:40 1.9 @@ -36,15 +36,10 @@ package jsr166y; * @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; @@ -62,7 +57,7 @@ public abstract class RecursiveTask e } /** - * Implements execution conventions for RecursiveTask + * Implements execution conventions for RecursiveTask. */ protected final boolean exec() { result = compute();