Skip to content

Commit ef11573

Browse files
committedAug 30, 2021
Cleanup
1 parent b505dc4 commit ef11573

File tree

4 files changed

+13
-10
lines changed

4 files changed

+13
-10
lines changed
 

‎src/java.base/share/classes/java/lang/LiveStackFrame.java

+3-1
Original file line numberDiff line numberDiff line change
@@ -239,7 +239,9 @@ public static StackWalker getStackWalker(Continuation continuation) {
239239
* {@link StackWalker.Option#RETAIN_CLASS_REFERENCE Option.RETAIN_CLASS_REFERENCE}
240240
* and it denies access to {@code RuntimePermission("getStackWalkerWithClassReference")}.
241241
*/
242-
public static StackWalker getStackWalker(Set<StackWalker.Option> options, ContinuationScope contScope, Continuation continuation) {
242+
public static StackWalker getStackWalker(Set<StackWalker.Option> options,
243+
ContinuationScope contScope,
244+
Continuation continuation) {
243245
@SuppressWarnings("removal")
244246
SecurityManager sm = System.getSecurityManager();
245247
if (sm != null) {

‎src/java.base/share/classes/java/lang/System.java

+3-1
Original file line numberDiff line numberDiff line change
@@ -2533,7 +2533,9 @@ public void unparkVirtualThread(Thread thread, boolean tryPush) {
25332533
((VirtualThread) thread).unpark(tryPush);
25342534
}
25352535

2536-
public StackWalker newStackWalkerInstance(Set<StackWalker.Option> options, ContinuationScope contScope, Continuation continuation) {
2536+
public StackWalker newStackWalkerInstance(Set<StackWalker.Option> options,
2537+
ContinuationScope contScope,
2538+
Continuation continuation) {
25372539
return StackWalker.newInstance(options, null, contScope, continuation);
25382540
}
25392541
});

‎src/java.base/share/classes/java/lang/Thread.java

-2
Original file line numberDiff line numberDiff line change
@@ -50,9 +50,7 @@
5050
import jdk.internal.reflect.CallerSensitive;
5151
import jdk.internal.reflect.Reflection;
5252
import jdk.internal.vm.Continuation;
53-
import jdk.internal.vm.ContinuationScope;
5453
import jdk.internal.vm.ThreadContainer;
55-
import jdk.internal.vm.ThreadContainers;
5654
import jdk.internal.vm.annotation.IntrinsicCandidate;
5755
import jdk.internal.vm.annotation.Stable;
5856
import sun.nio.ch.Interruptible;

‎src/java.base/share/classes/jdk/internal/access/JavaLangAccess.java

+7-6
Original file line numberDiff line numberDiff line change
@@ -461,22 +461,22 @@ public interface JavaLangAccess {
461461
/**
462462
* Returns the current thread's scope locals cache
463463
*/
464-
public Object[] scopeLocalCache();
464+
Object[] scopeLocalCache();
465465

466466
/**
467467
* Sets the current thread's scope locals cache
468468
*/
469-
public void setScopeLocalCache(Object[] cache);
469+
void setScopeLocalCache(Object[] cache);
470470

471471
/**
472472
* Returns the innermost mounted continuation
473473
*/
474-
public Continuation getContinuation(Thread thread);
474+
Continuation getContinuation(Thread thread);
475475

476476
/**
477477
* Sets the innermost mounted continuation
478478
*/
479-
public void setContinuation(Thread thread, Continuation continuation);
479+
void setContinuation(Thread thread, Continuation continuation);
480480

481481
/**
482482
* Parks the current virtual thread.
@@ -496,9 +496,10 @@ public interface JavaLangAccess {
496496
*/
497497
void unparkVirtualThread(Thread thread, boolean tryPush);
498498

499-
500499
/**
501500
* Creates a new StackWalker
502501
*/
503-
StackWalker newStackWalkerInstance(Set<StackWalker.Option> options, ContinuationScope contScope, Continuation continuation);
502+
StackWalker newStackWalkerInstance(Set<StackWalker.Option> options,
503+
ContinuationScope contScope,
504+
Continuation continuation);
504505
}

0 commit comments

Comments
 (0)
Please sign in to comment.