8263658: Use the blessed modifier order in java.base

Reviewed-by: rriggs, redestad
This commit is contained in:
Alex Blewitt 2021-03-19 13:06:58 +00:00 committed by Claes Redestad
parent 1572f3ccdd
commit b49c589340
28 changed files with 139 additions and 139 deletions

View file

@ -63,7 +63,7 @@ final class StackStreamFactory {
// Stack walk implementation classes to be excluded during stack walking
// lazily add subclasses when they are loaded.
private final static Set<Class<?>> stackWalkImplClasses = init();
private static final Set<Class<?>> stackWalkImplClasses = init();
private static final int SMALL_BATCH = 8;
private static final int BATCH_SIZE = 32;
@ -81,7 +81,7 @@ final class StackStreamFactory {
* Performance work and extensive testing is needed to replace the
* VM built-in backtrace filled in Throwable with the StackWalker.
*/
final static boolean isDebug =
static final boolean isDebug =
"true".equals(GetPropertyAction.privilegedGetProperty("stackwalk.debug"));
static <T> StackFrameTraverser<T>