Skip to content

Commit b49c589

Browse files
albluecl4es
authored andcommittedMar 19, 2021
8263658: Use the blessed modifier order in java.base
Reviewed-by: rriggs, redestad
1 parent 1572f3c commit b49c589

28 files changed

+139
-139
lines changed
 

‎src/java.base/share/classes/java/io/ObjectInputFilter.java

+5-5
Original file line numberDiff line numberDiff line change
@@ -226,12 +226,12 @@ private Config() {}
226226
/**
227227
* Lock object for system-wide filter.
228228
*/
229-
private final static Object serialFilterLock = new Object();
229+
private static final Object serialFilterLock = new Object();
230230

231231
/**
232232
* Debug: Logger
233233
*/
234-
private final static System.Logger configLog;
234+
private static final System.Logger configLog;
235235

236236
/**
237237
* Logger for debugging.
@@ -246,14 +246,14 @@ static void filterLog(System.Logger.Level level, String msg, Object... args) {
246246
* The name for the system-wide deserialization filter.
247247
* Used as a system property and a java.security.Security property.
248248
*/
249-
private final static String SERIAL_FILTER_PROPNAME = "jdk.serialFilter";
249+
private static final String SERIAL_FILTER_PROPNAME = "jdk.serialFilter";
250250

251251
/**
252252
* The system-wide filter; may be null.
253253
* Lookup the filter in java.security.Security or
254254
* the system property.
255255
*/
256-
private final static ObjectInputFilter configuredFilter;
256+
private static final ObjectInputFilter configuredFilter;
257257

258258
static {
259259
configuredFilter = AccessController
@@ -405,7 +405,7 @@ static ObjectInputFilter createFilter2(String pattern) {
405405
* used for all ObjectInputStreams that do not set their own filters.
406406
*
407407
*/
408-
final static class Global implements ObjectInputFilter {
408+
static final class Global implements ObjectInputFilter {
409409
/**
410410
* The pattern used to create the filter.
411411
*/

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@
3131
import java.lang.invoke.MethodType;
3232

3333
class StackFrameInfo implements StackFrame {
34-
private final static JavaLangInvokeAccess JLIA =
34+
private static final JavaLangInvokeAccess JLIA =
3535
SharedSecrets.getJavaLangInvokeAccess();
3636

3737
private final boolean retainClassRef;

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

+2-2
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ private StackStreamFactory() {}
6363

6464
// Stack walk implementation classes to be excluded during stack walking
6565
// lazily add subclasses when they are loaded.
66-
private final static Set<Class<?>> stackWalkImplClasses = init();
66+
private static final Set<Class<?>> stackWalkImplClasses = init();
6767

6868
private static final int SMALL_BATCH = 8;
6969
private static final int BATCH_SIZE = 32;
@@ -81,7 +81,7 @@ private StackStreamFactory() {}
8181
* Performance work and extensive testing is needed to replace the
8282
* VM built-in backtrace filled in Throwable with the StackWalker.
8383
*/
84-
final static boolean isDebug =
84+
static final boolean isDebug =
8585
"true".equals(GetPropertyAction.privilegedGetProperty("stackwalk.debug"));
8686

8787
static <T> StackFrameTraverser<T>

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -290,7 +290,7 @@ enum ExtendedOption {
290290

291291
static final EnumSet<Option> DEFAULT_EMPTY_OPTION = EnumSet.noneOf(Option.class);
292292

293-
private final static StackWalker DEFAULT_WALKER =
293+
private static final StackWalker DEFAULT_WALKER =
294294
new StackWalker(DEFAULT_EMPTY_OPTION);
295295

296296
private final Set<Option> options;

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -643,7 +643,7 @@ public static String stripTrailing(byte[] value) {
643643
return (right != value.length) ? newString(value, 0, right) : null;
644644
}
645645

646-
private final static class LinesSpliterator implements Spliterator<String> {
646+
private static final class LinesSpliterator implements Spliterator<String> {
647647
private byte[] value;
648648
private int index; // current index, modified on advance/split
649649
private final int fence; // one past last index

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -1065,7 +1065,7 @@ public static String stripTrailing(byte[] value) {
10651065
return (right != length) ? newString(value, 0, right) : null;
10661066
}
10671067

1068-
private final static class LinesSpliterator implements Spliterator<String> {
1068+
private static final class LinesSpliterator implements Spliterator<String> {
10691069
private byte[] value;
10701070
private int index; // current index, modified on advance/split
10711071
private final int fence; // one past last index

‎src/java.base/share/classes/java/lang/invoke/MethodHandleImpl.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -664,7 +664,7 @@ static MethodHandle makeBlockInliningWrapper(MethodHandle target) {
664664
DONT_INLINE_THRESHOLD);
665665
}
666666

667-
private final static class Makers {
667+
private static final class Makers {
668668
/** Constructs reinvoker lambda form which block inlining during JIT-compilation for a particular method handle */
669669
static final Function<MethodHandle, LambdaForm> PRODUCE_BLOCK_INLINING_FORM = new Function<MethodHandle, LambdaForm>() {
670670
@Override

0 commit comments

Comments
 (0)
Please sign in to comment.