Merge "Fix annotation / debugging" am: 69bbb1904f am: 1d866c0bf3

Change-Id: I01e7c1b39e2c1df26f9b64c441136ccfbedcc77f
diff --git a/core/java/android/util/NtpTrustedTime.java b/core/java/android/util/NtpTrustedTime.java
index 5240786..ea294f0 100644
--- a/core/java/android/util/NtpTrustedTime.java
+++ b/core/java/android/util/NtpTrustedTime.java
@@ -183,12 +183,11 @@
      *
      * @throws IllegalStateException if there is no cached value
      */
-    @UnsupportedAppUsage
     public TimestampedValue<Long> getCachedNtpTimeSignal() {
         if (!mHasCache) {
             throw new IllegalStateException("Missing authoritative time source");
         }
-        if (LOGD) Log.d(TAG, "currentTimeMillis() cache hit");
+        if (LOGD) Log.d(TAG, "getCachedNtpTimeSignal() cache hit");
 
         return new TimestampedValue<>(mCachedNtpElapsedRealtime, mCachedNtpTime);
     }