File tree 1 file changed +2
-6
lines changed
src/java.base/share/classes/java/util/concurrent
1 file changed +2
-6
lines changed Original file line number Diff line number Diff line change 37
37
38
38
import java .lang .invoke .MethodHandles ;
39
39
import java .lang .invoke .VarHandle ;
40
- import java .util .Objects ;
41
40
import java .util .concurrent .locks .LockSupport ;
42
41
import java .util .function .BiConsumer ;
43
42
import java .util .function .BiFunction ;
44
43
import java .util .function .Consumer ;
45
44
import java .util .function .Function ;
46
45
import java .util .function .Supplier ;
46
+ import java .util .Objects ;
47
47
48
48
/**
49
49
* A {@link Future} that may be explicitly completed (setting its
@@ -1795,7 +1795,7 @@ static final class AsyncRun extends ForkJoinTask<Void>
1795
1795
public final void setRawResult (Void v ) {}
1796
1796
public final boolean exec () { run (); return false ; }
1797
1797
1798
- private void doRun () {
1798
+ public void run () {
1799
1799
CompletableFuture <Void > d ; Runnable f ;
1800
1800
if ((d = dep ) != null && (f = fn ) != null ) {
1801
1801
dep = null ; fn = null ;
@@ -1810,10 +1810,6 @@ private void doRun() {
1810
1810
d .postComplete ();
1811
1811
}
1812
1812
}
1813
-
1814
- public void run () {
1815
- doRun ();
1816
- }
1817
1813
}
1818
1814
1819
1815
static CompletableFuture <Void > asyncRunStage (Executor e , Runnable f ) {
You can’t perform that action at this time.
0 commit comments