Merge "Disable a few metalava checks that platform fails after improvements."

This commit is contained in:
Sam Gilbert 2022-02-03 14:28:42 +00:00 committed by Gerrit Code Review
commit a6c0ac6529

View file

@ -334,7 +334,11 @@ func (d *Droidstubs) annotationsFlags(ctx android.ModuleContext, cmd *android.Ru
// TODO(tnorbye): find owners to fix these warnings when annotation was enabled.
cmd.FlagWithArg("--hide ", "HiddenTypedefConstant").
FlagWithArg("--hide ", "SuperfluousPrefix").
FlagWithArg("--hide ", "AnnotationExtraction")
FlagWithArg("--hide ", "AnnotationExtraction").
// (b/217545629)
FlagWithArg("--hide ", "ChangedThrows").
// (b/217552813)
FlagWithArg("--hide ", "ChangedAbstract")
}
}