8250240: Address use of default constructors in the java.util.concurrent

Reviewed-by: martin, lancea
This commit is contained in:
Joe Darcy 2020-07-23 22:50:12 -07:00
parent 1f91e0ebe3
commit 0ef80293f9
5 changed files with 25 additions and 0 deletions

View file

@ -68,6 +68,11 @@ package java.util.concurrent;
public abstract class RecursiveTask<V> extends ForkJoinTask<V> {
private static final long serialVersionUID = 5232453952276485270L;
/**
* Constructor for subclasses to call.
*/
public RecursiveTask() {}
/**
* The result of the computation.
*/