Skip to content

Commit 4fc480e

Browse files
committed
Supress warnings
1 parent 29b1680 commit 4fc480e

2 files changed

Lines changed: 1 addition & 2 deletions

File tree

buildSrc/src/main/groovy/org/apache/beam/gradle/BeamModulePlugin.groovy

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1532,7 +1532,6 @@ class BeamModulePlugin implements Plugin<Project> {
15321532
def disabledChecks = [
15331533
// TODO(https://github.com/apache/beam/issues/20955): Enable errorprone checks
15341534
"AutoValueImmutableFields",
1535-
"AutoValueSubclassLeaked",
15361535
"ComparableType",
15371536
"DoNotMockAutoValue",
15381537
"EmptyBlockTag",

sdks/java/io/google-cloud-platform/src/main/java/org/apache/beam/sdk/io/gcp/bigquery/BigQueryIOTranslation.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@
7373
import org.slf4j.Logger;
7474
import org.slf4j.LoggerFactory;
7575

76-
@SuppressWarnings({"rawtypes", "nullness"})
76+
@SuppressWarnings({"rawtypes", "nullness", "AutoValueSubclassLeaked"})
7777
public class BigQueryIOTranslation {
7878

7979
private static final Logger LOG = LoggerFactory.getLogger(BigQueryIOTranslation.class);

0 commit comments

Comments
 (0)