mirror of
https://github.com/openjdk/jdk.git
synced 2025-08-26 22:34:27 +02:00
8276348: Use blessed modifier order in java.base
Reviewed-by: dfuchs, darcy, iris, rriggs, martin
This commit is contained in:
parent
465d350d0b
commit
615063364a
21 changed files with 39 additions and 39 deletions
|
@ -561,7 +561,7 @@ public interface ObjectInputFilter {
|
|||
/**
|
||||
* Lock object for filter and filter factory.
|
||||
*/
|
||||
private final static Object serialFilterLock = new Object();
|
||||
private static final Object serialFilterLock = new Object();
|
||||
|
||||
/**
|
||||
* The property name for the filter.
|
||||
|
@ -906,7 +906,7 @@ public interface ObjectInputFilter {
|
|||
* used for all ObjectInputStreams that do not set their own filters.
|
||||
*
|
||||
*/
|
||||
final static class Global implements ObjectInputFilter {
|
||||
static final class Global implements ObjectInputFilter {
|
||||
/**
|
||||
* The pattern used to create the filter.
|
||||
*/
|
||||
|
|
|
@ -2515,7 +2515,7 @@ public class ObjectStreamClass implements Serializable {
|
|||
}
|
||||
|
||||
// a key composed of ObjectStreamField[] names and types
|
||||
static abstract class Key {
|
||||
abstract static class Key {
|
||||
abstract int length();
|
||||
abstract String fieldName(int i);
|
||||
abstract Class<?> fieldType(int i);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue