Skip to content

Commit 0616d86

Browse files
committedNov 5, 2021
8276635: Use blessed modifier order in compiler code
Reviewed-by: darcy
1 parent d95299a commit 0616d86

File tree

19 files changed

+43
-43
lines changed

19 files changed

+43
-43
lines changed
 

‎src/java.compiler/share/classes/javax/tools/Diagnostic.java

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (c) 2005, 2019, Oracle and/or its affiliates. All rights reserved.
2+
* Copyright (c) 2005, 2021, Oracle and/or its affiliates. All rights reserved.
33
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
44
*
55
* This code is free software; you can redistribute it and/or modify it
@@ -89,7 +89,7 @@ enum Kind {
8989
/**
9090
* Used to signal that no position is available.
9191
*/
92-
public final static long NOPOS = -1;
92+
public static final long NOPOS = -1;
9393

9494
/**
9595
* Returns the kind of this diagnostic, for example, error or

‎src/jdk.compiler/share/classes/com/sun/tools/javac/code/Symbol.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -794,7 +794,7 @@ public T getUnderlyingSymbol() {
794794

795795
/** A base class for Symbols representing types.
796796
*/
797-
public static abstract class TypeSymbol extends Symbol {
797+
public abstract static class TypeSymbol extends Symbol {
798798
public TypeSymbol(Kind kind, long flags, Name name, Type type, Symbol owner) {
799799
super(kind, flags, name, type, owner);
800800
}

‎src/jdk.compiler/share/classes/com/sun/tools/javac/code/Type.java

+2-2
Original file line numberDiff line numberDiff line change
@@ -241,7 +241,7 @@ public Type(TypeSymbol tsym, TypeMetadata metadata) {
241241
* of a given type expression. This mapping returns the original type is no changes occurred
242242
* when recursively mapping the original type's subterms.
243243
*/
244-
public static abstract class StructuralTypeMapping<S> extends Types.TypeMapping<S> {
244+
public abstract static class StructuralTypeMapping<S> extends Types.TypeMapping<S> {
245245

246246
@Override
247247
public Type visitClassType(ClassType t, S s) {
@@ -1786,7 +1786,7 @@ public String toString() {
17861786
}
17871787
}
17881788

1789-
public static abstract class DelegatedType extends Type {
1789+
public abstract static class DelegatedType extends Type {
17901790
public Type qtype;
17911791
public TypeTag tag;
17921792

‎src/jdk.compiler/share/classes/com/sun/tools/javac/code/Types.java

+6-6
Original file line numberDiff line numberDiff line change
@@ -4896,7 +4896,7 @@ public String toString() {
48964896
* type itself) of the operation implemented by this visitor; use
48974897
* Void if a second argument is not needed.
48984898
*/
4899-
public static abstract class DefaultTypeVisitor<R,S> implements Type.Visitor<R,S> {
4899+
public abstract static class DefaultTypeVisitor<R,S> implements Type.Visitor<R,S> {
49004900
public final R visit(Type t, S s) { return t.accept(this, s); }
49014901
public R visitClassType(ClassType t, S s) { return visitType(t, s); }
49024902
public R visitWildcardType(WildcardType t, S s) { return visitType(t, s); }
@@ -4923,7 +4923,7 @@ public static abstract class DefaultTypeVisitor<R,S> implements Type.Visitor<R,S
49234923
* symbol itself) of the operation implemented by this visitor; use
49244924
* Void if a second argument is not needed.
49254925
*/
4926-
public static abstract class DefaultSymbolVisitor<R,S> implements Symbol.Visitor<R,S> {
4926+
public abstract static class DefaultSymbolVisitor<R,S> implements Symbol.Visitor<R,S> {
49274927
public final R visit(Symbol s, S arg) { return s.accept(this, arg); }
49284928
public R visitClassSymbol(ClassSymbol s, S arg) { return visitSymbol(s, arg); }
49294929
public R visitMethodSymbol(MethodSymbol s, S arg) { return visitSymbol(s, arg); }
@@ -4946,7 +4946,7 @@ public static abstract class DefaultSymbolVisitor<R,S> implements Symbol.Visitor
49464946
* type itself) of the operation implemented by this visitor; use
49474947
* Void if a second argument is not needed.
49484948
*/
4949-
public static abstract class SimpleVisitor<R,S> extends DefaultTypeVisitor<R,S> {
4949+
public abstract static class SimpleVisitor<R,S> extends DefaultTypeVisitor<R,S> {
49504950
@Override
49514951
public R visitCapturedType(CapturedType t, S s) {
49524952
return visitTypeVar(t, s);
@@ -4966,7 +4966,7 @@ public R visitUndetVar(UndetVar t, S s) {
49664966
* form Type&nbsp;&times;&nbsp;Type&nbsp;&rarr;&nbsp;Boolean.
49674967
* <!-- In plain text: Type x Type -> Boolean -->
49684968
*/
4969-
public static abstract class TypeRelation extends SimpleVisitor<Boolean,Type> {}
4969+
public abstract static class TypeRelation extends SimpleVisitor<Boolean,Type> {}
49704970

49714971
/**
49724972
* A convenience visitor for implementing operations that only
@@ -4976,7 +4976,7 @@ public static abstract class TypeRelation extends SimpleVisitor<Boolean,Type> {}
49764976
* @param <R> the return type of the operation implemented by this
49774977
* visitor; use Void if no return type is needed.
49784978
*/
4979-
public static abstract class UnaryVisitor<R> extends SimpleVisitor<R,Void> {
4979+
public abstract static class UnaryVisitor<R> extends SimpleVisitor<R,Void> {
49804980
public final R visit(Type t) { return t.accept(this, null); }
49814981
}
49824982

@@ -5041,7 +5041,7 @@ public RetentionPolicy getRetention(TypeSymbol sym) {
50415041

50425042
// <editor-fold defaultstate="collapsed" desc="Signature Generation">
50435043

5044-
public static abstract class SignatureGenerator {
5044+
public abstract static class SignatureGenerator {
50455045

50465046
public static class InvalidSignatureException extends RuntimeException {
50475047
private static final long serialVersionUID = 0;

‎src/jdk.compiler/share/classes/com/sun/tools/javac/comp/Flow.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -341,7 +341,7 @@ protected Flow(Context context) {
341341
* Base visitor class for all visitors implementing dataflow analysis logic.
342342
* This class define the shared logic for handling jumps (break/continue statements).
343343
*/
344-
static abstract class BaseAnalyzer extends TreeScanner {
344+
abstract static class BaseAnalyzer extends TreeScanner {
345345

346346
enum JumpKind {
347347
BREAK(JCTree.Tag.BREAK) {

‎src/jdk.compiler/share/classes/com/sun/tools/javac/file/JRTIndex.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@
5656
public class JRTIndex {
5757
/** Get a shared instance of the cache. */
5858
private static JRTIndex sharedInstance;
59-
public synchronized static JRTIndex getSharedInstance() {
59+
public static synchronized JRTIndex getSharedInstance() {
6060
if (sharedInstance == null) {
6161
try {
6262
sharedInstance = new JRTIndex();

‎src/jdk.compiler/share/classes/com/sun/tools/javac/file/Locations.java

+2-2
Original file line numberDiff line numberDiff line change
@@ -444,7 +444,7 @@ private void addJarClassPath(Path jarFile, boolean warn) {
444444
* @see #initHandlers
445445
* @see #getHandler
446446
*/
447-
protected static abstract class LocationHandler {
447+
protected abstract static class LocationHandler {
448448

449449
/**
450450
* @see JavaFileManager#handleOption
@@ -513,7 +513,7 @@ Iterable<Set<Location>> listLocationsForModules() throws IOException {
513513
/**
514514
* A LocationHandler for a given Location, and associated set of options.
515515
*/
516-
private static abstract class BasicLocationHandler extends LocationHandler {
516+
private abstract static class BasicLocationHandler extends LocationHandler {
517517

518518
final Location location;
519519
final Set<Option> options;

‎src/jdk.compiler/share/classes/com/sun/tools/javac/jvm/StringConcat.java

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (c) 2015, 2018, Oracle and/or its affiliates. All rights reserved.
2+
* Copyright (c) 2015, 2021, Oracle and/or its affiliates. All rights reserved.
33
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
44
*
55
* This code is free software; you can redistribute it and/or modify it
@@ -254,7 +254,7 @@ private void builderToString(JCDiagnostic.DiagnosticPosition pos) {
254254
/**
255255
* Base class for indified concatenation bytecode flavors.
256256
*/
257-
private static abstract class Indy extends StringConcat {
257+
private abstract static class Indy extends StringConcat {
258258
public Indy(Context context) {
259259
super(context);
260260
}

‎src/jdk.compiler/share/classes/com/sun/tools/javac/model/AnnotationProxyMaker.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -259,7 +259,7 @@ public void visitError(Attribute.Error e) {
259259
private void typeMismatch(Method method, final Attribute attr) {
260260
class AnnotationTypeMismatchExceptionProxy extends ExceptionProxy {
261261
static final long serialVersionUID = 269;
262-
transient final Method method;
262+
final transient Method method;
263263
AnnotationTypeMismatchExceptionProxy(Method method) {
264264
this.method = method;
265265
}

‎src/jdk.compiler/share/classes/com/sun/tools/javac/parser/DocCommentParser.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -1115,7 +1115,7 @@ String newString(int start, int end) {
11151115
return new String(buf, start, end - start);
11161116
}
11171117

1118-
private static abstract class TagParser {
1118+
private abstract static class TagParser {
11191119
enum Kind { INLINE, BLOCK, EITHER }
11201120

11211121
final Kind kind;

‎src/jdk.compiler/share/classes/com/sun/tools/javac/parser/JavacParser.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -4988,7 +4988,7 @@ public int replaceTree(JCTree oldTree, JCTree newTree) {
49884988

49894989
}
49904990

4991-
protected static abstract class AbstractEndPosTable implements EndPosTable {
4991+
protected abstract static class AbstractEndPosTable implements EndPosTable {
49924992
/**
49934993
* The current parser.
49944994
*/

‎src/jdk.compiler/share/classes/com/sun/tools/javac/tree/DCTree.java

+3-3
Original file line numberDiff line numberDiff line change
@@ -294,7 +294,7 @@ public int getEndPosition(EndPosTable endPosTable) {
294294
};
295295
}
296296

297-
public static abstract class DCEndPosTree<T extends DCEndPosTree<T>> extends DCTree {
297+
public abstract static class DCEndPosTree<T extends DCEndPosTree<T>> extends DCTree {
298298

299299
private int endPos = NOPOS;
300300

@@ -381,14 +381,14 @@ public int getSourcePosition(int index) {
381381
}
382382
}
383383

384-
public static abstract class DCBlockTag extends DCTree implements BlockTagTree {
384+
public abstract static class DCBlockTag extends DCTree implements BlockTagTree {
385385
@Override @DefinedBy(Api.COMPILER_TREE)
386386
public String getTagName() {
387387
return getKind().tagName;
388388
}
389389
}
390390

391-
public static abstract class DCInlineTag extends DCEndPosTree<DCInlineTag> implements InlineTagTree {
391+
public abstract static class DCInlineTag extends DCEndPosTree<DCInlineTag> implements InlineTagTree {
392392
@Override @DefinedBy(Api.COMPILER_TREE)
393393
public String getTagName() {
394394
return getKind().tagName;

‎src/jdk.compiler/share/classes/com/sun/tools/javac/tree/JCTree.java

+9-9
Original file line numberDiff line numberDiff line change
@@ -689,7 +689,7 @@ public Tag getTag() {
689689
}
690690
}
691691

692-
public static abstract class JCStatement extends JCTree implements StatementTree {
692+
public abstract static class JCStatement extends JCTree implements StatementTree {
693693
@Override
694694
public JCStatement setType(Type type) {
695695
super.setType(type);
@@ -702,15 +702,15 @@ public JCStatement setPos(int pos) {
702702
}
703703
}
704704

705-
public static abstract class JCCaseLabel extends JCTree implements CaseLabelTree {
705+
public abstract static class JCCaseLabel extends JCTree implements CaseLabelTree {
706706
public abstract boolean isExpression();
707707
public boolean isNullPattern() {
708708
return isExpression() && TreeInfo.isNull((JCExpression) this);
709709
}
710710
public abstract boolean isPattern();
711711
}
712712

713-
public static abstract class JCExpression extends JCCaseLabel implements ExpressionTree {
713+
public abstract static class JCExpression extends JCCaseLabel implements ExpressionTree {
714714
@Override
715715
public JCExpression setType(Type type) {
716716
super.setType(type);
@@ -740,7 +740,7 @@ public boolean isPattern() {
740740
* Common supertype for all poly expression trees (lambda, method references,
741741
* conditionals, method and constructor calls)
742742
*/
743-
public static abstract class JCPolyExpression extends JCExpression {
743+
public abstract static class JCPolyExpression extends JCExpression {
744744

745745
/**
746746
* A poly expression can only be truly 'poly' in certain contexts
@@ -762,7 +762,7 @@ public enum PolyKind {
762762
/**
763763
* Common supertype for all functional expression trees (lambda and method references)
764764
*/
765-
public static abstract class JCFunctionalExpression extends JCPolyExpression {
765+
public abstract static class JCFunctionalExpression extends JCPolyExpression {
766766

767767
public JCFunctionalExpression() {
768768
//a functional expression is always a 'true' poly
@@ -2056,7 +2056,7 @@ public Tag getTag() {
20562056
}
20572057
}
20582058

2059-
public static abstract class JCOperatorExpression extends JCExpression {
2059+
public abstract static class JCOperatorExpression extends JCExpression {
20602060
public enum OperandPos {
20612061
LEFT,
20622062
RIGHT
@@ -2238,7 +2238,7 @@ public Tag getTag() {
22382238
/**
22392239
* Pattern matching forms.
22402240
*/
2241-
public static abstract class JCPattern extends JCCaseLabel
2241+
public abstract static class JCPattern extends JCCaseLabel
22422242
implements PatternTree {
22432243

22442244
@Override
@@ -2989,7 +2989,7 @@ public Tag getTag() {
29892989
}
29902990
}
29912991

2992-
public static abstract class JCDirective extends JCTree
2992+
public abstract static class JCDirective extends JCTree
29932993
implements DirectiveTree {
29942994
}
29952995

@@ -3401,7 +3401,7 @@ JCNewArray NewArray(JCExpression elemtype,
34013401

34023402
/** A generic visitor class for trees.
34033403
*/
3404-
public static abstract class Visitor {
3404+
public abstract static class Visitor {
34053405
public void visitTopLevel(JCCompilationUnit that) { visitTree(that); }
34063406
public void visitPackageDef(JCPackageDecl that) { visitTree(that); }
34073407
public void visitImport(JCImport that) { visitTree(that); }

‎src/jdk.compiler/share/classes/com/sun/tools/javac/util/Dependencies.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -178,7 +178,7 @@ static EnumSet<DependenciesMode> getDependenciesModes(String[] modes) {
178178
/**
179179
* Class representing a node in the dependency graph.
180180
*/
181-
public static abstract class Node extends GraphUtils.AbstractNode<ClassSymbol, Node>
181+
public abstract static class Node extends GraphUtils.AbstractNode<ClassSymbol, Node>
182182
implements GraphUtils.DottableNode<ClassSymbol, Node> {
183183
/**
184184
* dependant nodes grouped by kind

‎src/jdk.compiler/share/classes/com/sun/tools/javac/util/GraphUtils.java

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (c) 1999, 2013, Oracle and/or its affiliates. All rights reserved.
2+
* Copyright (c) 1999, 2021, Oracle and/or its affiliates. All rights reserved.
33
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
44
*
55
* This code is free software; you can redistribute it and/or modify it
@@ -54,7 +54,7 @@ public interface Node<D, N extends Node<D, N>> {
5454
/**
5555
* Visitor for graph nodes.
5656
*/
57-
static abstract class NodeVisitor<D, N extends Node<D, N>, A> {
57+
abstract static class NodeVisitor<D, N extends Node<D, N>, A> {
5858
/**
5959
* Visitor action for nodes.
6060
*/
@@ -92,7 +92,7 @@ public interface DottableNode<D, N extends DottableNode<D, N>> extends Node<D, N
9292
* This class is a basic abstract class for representing a node.
9393
* A node is associated with a given data.
9494
*/
95-
public static abstract class AbstractNode<D, N extends AbstractNode<D, N>> implements Node<D, N> {
95+
public abstract static class AbstractNode<D, N extends AbstractNode<D, N>> implements Node<D, N> {
9696
public final D data;
9797

9898
public AbstractNode(D data) {
@@ -129,7 +129,7 @@ public <A> void accept(NodeVisitor<D, N, A> visitor, A arg) {
129129
* This class specialized Node, by adding elements that are required in order
130130
* to perform Tarjan computation of strongly connected components.
131131
*/
132-
public static abstract class TarjanNode<D, N extends TarjanNode<D, N>> extends AbstractNode<D, N>
132+
public abstract static class TarjanNode<D, N extends TarjanNode<D, N>> extends AbstractNode<D, N>
133133
implements Comparable<N> {
134134
int index = -1;
135135
int lowlink;

‎src/jdk.compiler/share/classes/com/sun/tools/javac/util/JCDiagnostic.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -479,7 +479,7 @@ public int getColumnNumber() {
479479
* created programmatically (by using the supplied factory method) or obtained through build-time
480480
* generated factory methods.
481481
*/
482-
public static abstract class DiagnosticInfo {
482+
public abstract static class DiagnosticInfo {
483483

484484
/** The diagnostic kind (i.e. error). */
485485
DiagnosticType type;

‎src/jdk.compiler/share/classes/com/sun/tools/javac/util/Log.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,7 @@ public String key(String k) {
9090
* Note that javax.tools.DiagnosticListener (if set) is called later in the
9191
* diagnostic pipeline.
9292
*/
93-
public static abstract class DiagnosticHandler {
93+
public abstract static class DiagnosticHandler {
9494
/**
9595
* The previously installed diagnostic handler.
9696
*/

‎src/jdk.compiler/share/classes/com/sun/tools/javac/util/Name.java

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (c) 1999, 2015, Oracle and/or its affiliates. All rights reserved.
2+
* Copyright (c) 1999, 2021, Oracle and/or its affiliates. All rights reserved.
33
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
44
*
55
* This code is free software; you can redistribute it and/or modify it
@@ -205,7 +205,7 @@ public <X> X map(NameMapper<X> mapper) {
205205

206206
/** An abstraction for the hash table used to create unique Name instances.
207207
*/
208-
public static abstract class Table {
208+
public abstract static class Table {
209209
/** Standard name table.
210210
*/
211211
public final Names names;

‎src/jdk.jartool/share/classes/sun/tools/jar/GNUStyleOptions.java

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (c) 2015, 2018, Oracle and/or its affiliates. All rights reserved.
2+
* Copyright (c) 2015, 2021, Oracle and/or its affiliates. All rights reserved.
33
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
44
*
55
* This code is free software; you can redistribute it and/or modify it
@@ -239,7 +239,7 @@ enum OptionType {
239239
OptionType(String name) { this.name = name; }
240240
}
241241

242-
static abstract class Option {
242+
abstract static class Option {
243243
final boolean hasArg;
244244
final boolean argIsOptional;
245245
final String[] aliases;

0 commit comments

Comments
 (0)
Please sign in to comment.