Skip to content

Commit ba0b810

Browse files
committedSep 23, 2021
restore to reduces diffs with master
1 parent 15868c0 commit ba0b810

File tree

1 file changed

+2
-6
lines changed

1 file changed

+2
-6
lines changed
 

‎src/java.base/share/classes/java/util/concurrent/CompletableFuture.java

+2-6
Original file line numberDiff line numberDiff line change
@@ -37,13 +37,13 @@
3737

3838
import java.lang.invoke.MethodHandles;
3939
import java.lang.invoke.VarHandle;
40-
import java.util.Objects;
4140
import java.util.concurrent.locks.LockSupport;
4241
import java.util.function.BiConsumer;
4342
import java.util.function.BiFunction;
4443
import java.util.function.Consumer;
4544
import java.util.function.Function;
4645
import java.util.function.Supplier;
46+
import java.util.Objects;
4747

4848
/**
4949
* A {@link Future} that may be explicitly completed (setting its
@@ -1795,7 +1795,7 @@ static final class AsyncRun extends ForkJoinTask<Void>
17951795
public final void setRawResult(Void v) {}
17961796
public final boolean exec() { run(); return false; }
17971797

1798-
private void doRun() {
1798+
public void run() {
17991799
CompletableFuture<Void> d; Runnable f;
18001800
if ((d = dep) != null && (f = fn) != null) {
18011801
dep = null; fn = null;
@@ -1810,10 +1810,6 @@ private void doRun() {
18101810
d.postComplete();
18111811
}
18121812
}
1813-
1814-
public void run() {
1815-
doRun();
1816-
}
18171813
}
18181814

18191815
static CompletableFuture<Void> asyncRunStage(Executor e, Runnable f) {

0 commit comments

Comments
 (0)
Please sign in to comment.