diff options
| author | Artur Satayev <satayev@google.com> | 2019-12-10 17:47:53 +0000 |
|---|---|---|
| committer | Artur Satayev <satayev@google.com> | 2020-01-09 15:08:18 +0000 |
| commit | 2d330f6fa8bc0888a27bf1729844be8b0fe71c8b (patch) | |
| tree | 1c25b338c5867f94491997661e90c27eacbd155d /core/java/android/util/Base64.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: I288969b0c22fa3a63bc2e71bb5009fe4a927e154
Merged-In: I288969b0c22fa3a63bc2e71bb5009fe4a927e154
Diffstat (limited to 'core/java/android/util/Base64.java')
| -rw-r--r-- | core/java/android/util/Base64.java | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/core/java/android/util/Base64.java b/core/java/android/util/Base64.java index ecc0c9cc9de3..92abd7c15f5f 100644 --- a/core/java/android/util/Base64.java +++ b/core/java/android/util/Base64.java @@ -16,7 +16,8 @@ package android.util; -import android.annotation.UnsupportedAppUsage; +import android.compat.annotation.UnsupportedAppUsage; + import java.io.UnsupportedEncodingException; /** |
