8232230: Suppress warnings on non-serializable non-transient instance fields in java.util.concurrent

Reviewed-by: martin
This commit is contained in:
Joe Darcy 2019-10-16 16:55:52 -07:00
parent 49883054db
commit 98c9f8bdc7
14 changed files with 28 additions and 0 deletions

View file

@ -71,6 +71,7 @@ public abstract class RecursiveTask<V> extends ForkJoinTask<V> {
/**
* The result of the computation.
*/
@SuppressWarnings("serial") // Conditionally serializable
V result;
/**