--- jsr166/src/jsr166y/RecursiveTask.java 2009/07/20 22:40:09 1.4 +++ jsr166/src/jsr166y/RecursiveTask.java 2009/07/23 23:07:57 1.7 @@ -32,16 +32,12 @@ 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 { /** - * Empty constructor for use by subclasses. - */ - protected RecursiveTask() { - } - - /** * The result returned by compute method. */ V result; @@ -60,7 +56,7 @@ public abstract class RecursiveTask e } /** - * Implements execution conventions for RecursiveTask + * Implements execution conventions for RecursiveTask. */ protected final boolean exec() { result = compute();