Skip to content
This repository was archived by the owner on May 8, 2026. It is now read-only.

Commit 89f2c09

Browse files
improve errorprone config and suppress some warnings in Types
Change-Id: I6d05d0a2b40c11dc0d3888f97a685f2b698a270d
1 parent e3b2bc8 commit 89f2c09

2 files changed

Lines changed: 2 additions & 1 deletion

File tree

  • google-cloud-bigtable

google-cloud-bigtable/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -427,7 +427,7 @@
427427
<compilerArgs>
428428
<arg>-XDcompilePolicy=simple</arg>
429429
<arg>--should-stop=ifError=FLOW</arg>
430-
<arg>-Xplugin:ErrorProne -XepExcludedPaths:.*/generated-sources/.*</arg>
430+
<arg>-Xplugin:ErrorProne -XepDisableWarningsInGeneratedCode -Xep:MissingSummary:OFF -Xep:InlineMeSuggester:OFF -Xep:AutoValueImmutableFields:OFF -Xep:ObjectEqualsForPrimitives:OFF</arg>
431431

432432
<arg>-J--add-exports=jdk.compiler/com.sun.tools.javac.api=ALL-UNNAMED</arg>
433433
<arg>-J--add-exports=jdk.compiler/com.sun.tools.javac.file=ALL-UNNAMED</arg>

google-cloud-bigtable/src/main/java/com/google/cloud/bigtable/common/Type.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -42,6 +42,7 @@
4242
*/
4343
@BetaApi
4444
@InternalApi
45+
@SuppressWarnings({"SameNameButDifferent", "JavaLangClash"})
4546
public interface Type {
4647

4748
@AutoValue

0 commit comments

Comments
 (0)