commit | b0397f86018c239b1810fcd8a739e7910ac782a5 | [log] [tgz] |
---|---|---|
author | Paul Duffin <paulduffin@google.com> | Thu Mar 20 02:26:55 2025 -0700 |
committer | Gerrit Code Review <noreply-gerritcodereview@google.com> | Thu Mar 20 02:26:55 2025 -0700 |
tree | e74ee47244227348964b856bf3f80cf98068173c | |
parent | 2fd4423daeab2554ac826337052aec15c841c897 [diff] | |
parent | 653c770c477771eed21a8dd3cac721daf9cfea40 [diff] |
Merge "Update as AnnotationAttribute.value is now legacyValue" into main
diff --git a/tools/check-flagged-apis/src/com/android/checkflaggedapis/Main.kt b/tools/check-flagged-apis/src/com/android/checkflaggedapis/Main.kt index dd7c7de..25cba9c 100644 --- a/tools/check-flagged-apis/src/com/android/checkflaggedapis/Main.kt +++ b/tools/check-flagged-apis/src/com/android/checkflaggedapis/Main.kt
@@ -292,7 +292,7 @@ return item.modifiers .findAnnotation("android.annotation.FlaggedApi") ?.findAttribute("value") - ?.value + ?.legacyValue ?.let { Flag(it.value() as String) } } }