File tree Expand file tree Collapse file tree
nullaway/src/main/java/com/uber/nullaway Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -56,7 +56,7 @@ def versions = [
5656 support : " 27.1.1" ,
5757 wala : " 1.6.12" ,
5858 commonscli : " 1.4" ,
59- autoValue : " 1.11.0 " ,
59+ autoValue : " 1.11.1 " ,
6060 autoService : " 1.1.1" ,
6161 javaparser : " 3.26.2" ,
6262 googlejavaformat : " 1.30.0" ,
Original file line number Diff line number Diff line change @@ -624,11 +624,5 @@ static MethodClassAndName fromClassDotMethod(String classDotMethod) {
624624 abstract String enclosingClass ();
625625
626626 abstract String methodName ();
627-
628- @ Override
629- public abstract boolean equals (@ Nullable Object o );
630-
631- @ Override
632- public abstract int hashCode ();
633627 }
634628}
Original file line number Diff line number Diff line change @@ -313,11 +313,5 @@ abstract class FieldRef {
313313 public static FieldRef fieldRef (String enclosingClass , String fieldName ) {
314314 return new AutoValue_LibraryModels_FieldRef (enclosingClass , fieldName );
315315 }
316-
317- @ Override
318- public abstract boolean equals (@ Nullable Object o );
319-
320- @ Override
321- public abstract int hashCode ();
322316 }
323317}
Original file line number Diff line number Diff line change @@ -2932,11 +2932,5 @@ static FieldInitEntities create(
29322932 * annotated with annotations passed to -XepOpt:NullAway:CustomInitializerAnnotations.
29332933 */
29342934 abstract ImmutableSet <MethodTree > staticInitializerMethods ();
2935-
2936- @ Override
2937- public abstract boolean equals (@ Nullable Object o );
2938-
2939- @ Override
2940- public abstract int hashCode ();
29412935 }
29422936}
Original file line number Diff line number Diff line change @@ -341,12 +341,6 @@ ProcessingEnvironment environment() {
341341 }
342342
343343 abstract TreePath codePath ();
344-
345- @ Override
346- public abstract boolean equals (@ Nullable Object o );
347-
348- @ Override
349- public abstract int hashCode ();
350344 }
351345
352346 @ AutoValue
@@ -361,12 +355,6 @@ private static AnalysisParams create(
361355 abstract ForwardTransferFunction <?, ?> transferFunction ();
362356
363357 abstract ControlFlowGraph cfg ();
364-
365- @ Override
366- public abstract boolean equals (@ Nullable Object o );
367-
368- @ Override
369- public abstract int hashCode ();
370358 }
371359
372360 /** A pair of Analysis and ControlFlowGraph. */
Original file line number Diff line number Diff line change 6969import javax .lang .model .element .ExecutableElement ;
7070import org .checkerframework .nullaway .dataflow .cfg .UnderlyingAST ;
7171import org .checkerframework .nullaway .dataflow .cfg .node .LocalVariableNode ;
72- import org .jspecify .annotations .Nullable ;
7372
7473/**
7574 * This Handler transfers nullability info through chains of calls to methods of
@@ -141,12 +140,6 @@ static CollectRecordAndInnerMethod create(
141140 abstract CollectLikeMethodRecord getCollectLikeMethodRecord ();
142141
143142 abstract Tree getInnerMethodOrLambda ();
144-
145- @ Override
146- public abstract boolean equals (@ Nullable Object o );
147-
148- @ Override
149- public abstract int hashCode ();
150143 }
151144
152145 // Maps collect calls in the observable call chain to the relevant (collect record, inner method
You can’t perform that action at this time.
0 commit comments