@@ -1139,9 +1139,9 @@ private static MangledComprehensionName of(
11391139 @ AutoValue
11401140 public abstract static class SubtreeReplacement {
11411141
1142- public abstract long exprIdToReplace ();
1142+ abstract long exprIdToReplace ();
11431143
1144- public abstract Replacement replacement ();
1144+ abstract Replacement replacement ();
11451145
11461146 public static SubtreeReplacement of (long exprIdToReplace , CelMutableExpr replacementExpr ) {
11471147 return new AutoValue_AstMutator_SubtreeReplacement (
@@ -1155,26 +1155,26 @@ public static SubtreeReplacement of(long exprIdToReplace, CelMutableAst replacem
11551155
11561156 /** Discriminated union of either a {@link CelMutableExpr} or a {@link CelMutableAst}. */
11571157 @ AutoOneOf (Replacement .Kind .class )
1158- public abstract static class Replacement {
1158+ abstract static class Replacement {
11591159
1160- public abstract CelMutableExpr expr ();
1160+ abstract CelMutableExpr expr ();
11611161
1162- public abstract CelMutableAst ast ();
1162+ abstract CelMutableAst ast ();
11631163
1164- public abstract Replacement . Kind kind ();
1164+ abstract Kind kind ();
11651165
1166- public static Replacement ofExpr (CelMutableExpr expr ) {
1166+ static Replacement ofExpr (CelMutableExpr expr ) {
11671167 return AutoOneOf_AstMutator_SubtreeReplacement_Replacement .expr (
11681168 Preconditions .checkNotNull (expr ));
11691169 }
11701170
1171- public static Replacement ofAst (CelMutableAst ast ) {
1171+ static Replacement ofAst (CelMutableAst ast ) {
11721172 return AutoOneOf_AstMutator_SubtreeReplacement_Replacement .ast (
11731173 Preconditions .checkNotNull (ast ));
11741174 }
11751175
11761176 /** Kind of {@link Replacement}. */
1177- public enum Kind {
1177+ enum Kind {
11781178 EXPR ,
11791179 AST
11801180 }
0 commit comments