diff options
author | Artur Satayev <satayev@google.com> | 2020-01-08 12:24:36 +0000 |
---|---|---|
committer | Artur Satayev <satayev@google.com> | 2020-01-08 16:06:00 +0000 |
commit | 2ebb31c00c31d2e44d972f178e537185c4c6aa5e (patch) | |
tree | f15f3524351e8ad1eacb1b8282aee5fc61c0d34b /opengl/java/javax | |
parent | c3fa568b75596e30f48870592c216622a5e4a10f (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 \
git diff HEAD^ HEAD | grep '^[+-][^+-]' | grep -v '.import'
Change-Id: I853372f3c6fef905553bb31be4f1bb48df735f7a
Diffstat (limited to 'opengl/java/javax')
-rw-r--r-- | opengl/java/javax/microedition/khronos/egl/EGL10.java | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/opengl/java/javax/microedition/khronos/egl/EGL10.java b/opengl/java/javax/microedition/khronos/egl/EGL10.java index 8a2517062d4d..ea571c7311a1 100644 --- a/opengl/java/javax/microedition/khronos/egl/EGL10.java +++ b/opengl/java/javax/microedition/khronos/egl/EGL10.java @@ -16,8 +16,7 @@ package javax.microedition.khronos.egl; -import android.annotation.UnsupportedAppUsage; -import java.lang.String; +import android.compat.annotation.UnsupportedAppUsage; public interface EGL10 extends EGL { int EGL_SUCCESS = 0x3000; |