Skip to content

Commit be4b32d

Browse files
committed
Bump to AutoValue 1.11.1
1 parent 8682109 commit be4b32d

6 files changed

Lines changed: 1 addition & 38 deletions

File tree

gradle/dependencies.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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",

nullaway/src/main/java/com/uber/nullaway/ErrorProneCLIFlagsConfig.java

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff 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
}

nullaway/src/main/java/com/uber/nullaway/LibraryModels.java

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff 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
}

nullaway/src/main/java/com/uber/nullaway/NullAway.java

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff 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
}

nullaway/src/main/java/com/uber/nullaway/dataflow/DataFlow.java

Lines changed: 0 additions & 12 deletions
Original file line numberDiff line numberDiff 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. */

nullaway/src/main/java/com/uber/nullaway/handlers/StreamNullabilityPropagator.java

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,6 @@
6969
import javax.lang.model.element.ExecutableElement;
7070
import org.checkerframework.nullaway.dataflow.cfg.UnderlyingAST;
7171
import 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

0 commit comments

Comments
 (0)