-
Notifications
You must be signed in to change notification settings - Fork 744
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Demote a couple of checks that rely on @generated annotations to warn…
…ings to avoid break builds that don't have an `@Generated` annotation available, see discussion in: #1348 ------------- Created by MOE: https://github.com/google/moe MOE_MIGRATED_REVID=312115507
- Loading branch information
Showing
1 changed file
with
2 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -539,7 +539,6 @@ public static ScannerSupplier errorChecks() { | |
EqualsNaN.class, | ||
EqualsReference.class, | ||
EqualsWrongThing.class, | ||
ExtendsAutoValue.class, | ||
ForOverrideChecker.class, | ||
FormatString.class, | ||
FormatStringAnnotationChecker.class, | ||
|
@@ -619,7 +618,6 @@ public static ScannerSupplier errorChecks() { | |
RandomCast.class, | ||
RandomModInteger.class, | ||
RectIntersectReturnValueIgnored.class, | ||
RefersToDaggerCodegen.class, | ||
RestrictedApiChecker.class, | ||
ReturnValueIgnored.class, | ||
SelfAssignment.class, | ||
|
@@ -874,6 +872,7 @@ public static ScannerSupplier errorChecks() { | |
EmptyTopLevelDeclaration.class, | ||
EqualsBrokenForNull.class, | ||
ExpectedExceptionChecker.class, | ||
ExtendsAutoValue.class, | ||
This comment has been minimized.
Sorry, something went wrong. |
||
FieldCanBeFinal.class, | ||
FieldCanBeLocal.class, | ||
FieldMissingNullable.class, | ||
|
@@ -917,6 +916,7 @@ public static ScannerSupplier errorChecks() { | |
RedundantCondition.class, | ||
RedundantOverride.class, | ||
RedundantThrows.class, | ||
RefersToDaggerCodegen.class, | ||
This comment has been minimized.
Sorry, something went wrong.
davido
Contributor
|
||
RemoveUnusedImports.class, | ||
ScopeOnModule.class, | ||
ScopeOrQualifierAnnotationRetention.class, | ||
|
Same here.