diff options
author | Artur Satayev <satayev@google.com> | 2019-12-10 17:47:56 +0000 |
---|---|---|
committer | Artur Satayev <satayev@google.com> | 2020-01-07 14:19:21 +0000 |
commit | 74cb7199641e4bc34358f70c608a10938464517b (patch) | |
tree | 8b10fa35e66ad60bce9fbdb30bf5641ea4c384c6 /test-base/hiddenapi/src/junit/framework/TestCase.java | |
parent | 1d746b24650a4306b110a81264fedd383a74e7d0 (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
Diffstat (limited to 'test-base/hiddenapi/src/junit/framework/TestCase.java')
-rw-r--r-- | test-base/hiddenapi/src/junit/framework/TestCase.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test-base/hiddenapi/src/junit/framework/TestCase.java b/test-base/hiddenapi/src/junit/framework/TestCase.java index 5a5486108a7a..59fbe2b94561 100644 --- a/test-base/hiddenapi/src/junit/framework/TestCase.java +++ b/test-base/hiddenapi/src/junit/framework/TestCase.java @@ -16,7 +16,7 @@ package junit.framework; -import android.annotation.UnsupportedAppUsage; +import android.compat.annotation.UnsupportedAppUsage; /** * Stub only |