mirror of
https://github.com/openjdk/jdk.git
synced 2025-08-27 14:54:52 +02:00
8263658: Use the blessed modifier order in java.base
Reviewed-by: rriggs, redestad
This commit is contained in:
parent
1572f3ccdd
commit
b49c589340
28 changed files with 139 additions and 139 deletions
|
@ -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>
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue