Merge "Disable a few metalava checks that platform fails after improvements." am: a6c0ac6529 am: 1d71e6047d am: 94dc2dbbbc

Original change: https://android-review.googlesource.com/c/platform/build/soong/+/1968699

Change-Id: Ifd047ce752836ddfab40658cf0e24e45b4cb7612
This commit is contained in:
Sam Gilbert 2022-02-03 15:33:44 +00:00 committed by Automerger Merge Worker
commit 7efc7ddc37

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")
}
}