aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLiam Miller-Cushon <cushon@google.com>2022-12-27 14:30:55 -0800
committerJavac Team <javac-team+copybara@google.com>2022-12-27 14:31:44 -0800
commitb893b5e8b265e1f29c251b99e3d1583653c98ea9 (patch)
tree5adc6fde70fc2b8ea4e0dd6bb0f6babfebbf65ad
parentd803c893ef760d33407c8bfcf6e69a199a711dbf (diff)
downloadturbine-b893b5e8b265e1f29c251b99e3d1583653c98ea9.tar.gz
Remove workaround for b/188833569 - AutoValue is supposed to add `@Nullable` to `equals` methods now
PiperOrigin-RevId: 498034435
-rw-r--r--java/com/google/turbine/options/TurbineOptions.java8
1 files changed, 0 insertions, 8 deletions
diff --git a/java/com/google/turbine/options/TurbineOptions.java b/java/com/google/turbine/options/TurbineOptions.java
index 5cd9a61..c246519 100644
--- a/java/com/google/turbine/options/TurbineOptions.java
+++ b/java/com/google/turbine/options/TurbineOptions.java
@@ -20,7 +20,6 @@ import com.google.auto.value.AutoValue;
import com.google.common.collect.ImmutableList;
import com.google.common.collect.ImmutableSet;
import java.util.Optional;
-import org.jspecify.nullness.Nullable;
/** Header compilation options. */
@AutoValue
@@ -203,11 +202,4 @@ public abstract class TurbineOptions {
public abstract TurbineOptions build();
}
-
- // TODO(b/188833569): remove when AutoValue adds @Nullable to Object if its on the classpath
- @Override
- public abstract boolean equals(@Nullable Object other);
-
- @Override
- public abstract int hashCode();
}