8255299: Drop explicit zeroing at instantiation of Atomic* objects

Reviewed-by: redestad, serb, prr
This commit is contained in:
Sergey Tsypanov 2020-10-28 12:11:53 +00:00 committed by Daniel Fuchs
parent 6b2d11ba24
commit 3c4fc79326
17 changed files with 16 additions and 19 deletions

View file

@ -68,7 +68,7 @@ abstract class AbstractShortCircuitTask<P_IN, P_OUT, R,
protected AbstractShortCircuitTask(PipelineHelper<P_OUT> helper,
Spliterator<P_IN> spliterator) {
super(helper, spliterator);
sharedResult = new AtomicReference<>(null);
sharedResult = new AtomicReference<>();
}
/**