mirror of
https://github.com/openjdk/jdk.git
synced 2025-08-28 15:24:43 +02:00
8250240: Address use of default constructors in the java.util.concurrent
Reviewed-by: martin, lancea
This commit is contained in:
parent
1f91e0ebe3
commit
0ef80293f9
5 changed files with 25 additions and 0 deletions
|
@ -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.
|
||||
*/
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue