@@ -4896,7 +4896,7 @@ public String toString() {
4896
4896
* type itself) of the operation implemented by this visitor; use
4897
4897
* Void if a second argument is not needed.
4898
4898
*/
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 > {
4900
4900
public final R visit (Type t , S s ) { return t .accept (this , s ); }
4901
4901
public R visitClassType (ClassType t , S s ) { return visitType (t , s ); }
4902
4902
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
4923
4923
* symbol itself) of the operation implemented by this visitor; use
4924
4924
* Void if a second argument is not needed.
4925
4925
*/
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 > {
4927
4927
public final R visit (Symbol s , S arg ) { return s .accept (this , arg ); }
4928
4928
public R visitClassSymbol (ClassSymbol s , S arg ) { return visitSymbol (s , arg ); }
4929
4929
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
4946
4946
* type itself) of the operation implemented by this visitor; use
4947
4947
* Void if a second argument is not needed.
4948
4948
*/
4949
- public static abstract class SimpleVisitor <R ,S > extends DefaultTypeVisitor <R ,S > {
4949
+ public abstract static class SimpleVisitor <R ,S > extends DefaultTypeVisitor <R ,S > {
4950
4950
@ Override
4951
4951
public R visitCapturedType (CapturedType t , S s ) {
4952
4952
return visitTypeVar (t , s );
@@ -4966,7 +4966,7 @@ public R visitUndetVar(UndetVar t, S s) {
4966
4966
* form Type × Type → Boolean.
4967
4967
* <!-- In plain text: Type x Type -> Boolean -->
4968
4968
*/
4969
- public static abstract class TypeRelation extends SimpleVisitor <Boolean ,Type > {}
4969
+ public abstract static class TypeRelation extends SimpleVisitor <Boolean ,Type > {}
4970
4970
4971
4971
/**
4972
4972
* A convenience visitor for implementing operations that only
@@ -4976,7 +4976,7 @@ public static abstract class TypeRelation extends SimpleVisitor<Boolean,Type> {}
4976
4976
* @param <R> the return type of the operation implemented by this
4977
4977
* visitor; use Void if no return type is needed.
4978
4978
*/
4979
- public static abstract class UnaryVisitor <R > extends SimpleVisitor <R ,Void > {
4979
+ public abstract static class UnaryVisitor <R > extends SimpleVisitor <R ,Void > {
4980
4980
public final R visit (Type t ) { return t .accept (this , null ); }
4981
4981
}
4982
4982
@@ -5041,7 +5041,7 @@ public RetentionPolicy getRetention(TypeSymbol sym) {
5041
5041
5042
5042
// <editor-fold defaultstate="collapsed" desc="Signature Generation">
5043
5043
5044
- public static abstract class SignatureGenerator {
5044
+ public abstract static class SignatureGenerator {
5045
5045
5046
5046
public static class InvalidSignatureException extends RuntimeException {
5047
5047
private static final long serialVersionUID = 0 ;
0 commit comments