summaryrefslogtreecommitdiff
path: root/core/java/android/util/DebugUtils.java
diff options
context:
space:
mode:
authorMathew Inwood <mathewi@google.com>2018-08-14 17:32:44 +0100
committerMathew Inwood <mathewi@google.com>2018-08-14 17:32:44 +0100
commitb407568c55b5e558a0e45a1011b281acf37a45ff (patch)
tree3fc2ba768ae4db2c72d29b370328254bd4ebdc9d /core/java/android/util/DebugUtils.java
parent1f077d9045d824283e26f63ad889444da7bbf620 (diff)
Add @UnsupportedAppUsage annotations
For packages: android.util.proto android.util.jar android.util.apk android.util This is an automatically generated CL. See go/UnsupportedAppUsage for more details. Exempted-From-Owner-Approval: Mechanical changes to the codebase which have been approved by Android API council and announced on android-eng@ Bug: 110868826 Test: m Change-Id: I18848448a81132399f6878812acf5031ed8cec9f Merged-In: Ia0f48c244b0fbe33d40d797702a82303648196ed
Diffstat (limited to 'core/java/android/util/DebugUtils.java')
-rw-r--r--core/java/android/util/DebugUtils.java2
1 files changed, 2 insertions, 0 deletions
diff --git a/core/java/android/util/DebugUtils.java b/core/java/android/util/DebugUtils.java
index 46e316931935..e87fcff3ee4b 100644
--- a/core/java/android/util/DebugUtils.java
+++ b/core/java/android/util/DebugUtils.java
@@ -16,6 +16,7 @@
package android.util;
+import android.annotation.UnsupportedAppUsage;
import java.io.PrintWriter;
import java.lang.reflect.Field;
import java.lang.reflect.InvocationTargetException;
@@ -108,6 +109,7 @@ public class DebugUtils {
}
/** @hide */
+ @UnsupportedAppUsage
public static void buildShortClassTag(Object cls, StringBuilder out) {
if (cls == null) {
out.append("null");