diff options
author | Artur Satayev <satayev@google.com> | 2019-12-10 17:47:56 +0000 |
---|---|---|
committer | Artur Satayev <satayev@google.com> | 2020-01-09 13:52:18 +0000 |
commit | 54af4fc42ac093c7dc84787b8bc98733207c0496 (patch) | |
tree | bc1386d5d9676f5576ff1f8ec479eee8e00e5300 /test-base/hiddenapi/src/junit/framework/TestSuite.java | |
parent | 07dcca55fc93fff29fe342eafc2e94d1e3addba1 (diff) |
Use new UnsupportedAppUsage annotation.
Existing annotations in libcore/ and frameworks/ will deleted after the migration. This also means that any java library that compiles @UnsupportedAppUsage requires a direct dependency on "unsupportedappusage" java_library.
Bug: 145132366
Test: m && diff unsupportedappusage_index.csv
Change-Id: I547d7fb2e6bc2e9707bbc0d14dc1e8cd632c5a23
Merged-In: I547d7fb2e6bc2e9707bbc0d14dc1e8cd632c5a23
Diffstat (limited to 'test-base/hiddenapi/src/junit/framework/TestSuite.java')
-rw-r--r-- | test-base/hiddenapi/src/junit/framework/TestSuite.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test-base/hiddenapi/src/junit/framework/TestSuite.java b/test-base/hiddenapi/src/junit/framework/TestSuite.java index 368c661dbfa4..32305c9149c0 100644 --- a/test-base/hiddenapi/src/junit/framework/TestSuite.java +++ b/test-base/hiddenapi/src/junit/framework/TestSuite.java @@ -16,7 +16,7 @@ package junit.framework; -import android.annotation.UnsupportedAppUsage; +import android.compat.annotation.UnsupportedAppUsage; import java.lang.reflect.Method; |