diff options
| author | 2020-01-20 03:33:15 +0000 | |
|---|---|---|
| committer | 2020-01-20 03:33:15 +0000 | |
| commit | 596e7d6fdab3675d34e7cf2106bc3c24c372e46e (patch) | |
| tree | d56f8697393a4933cf95c5591f937c1aba328f11 | |
| parent | 59fe0357bd3207c1bc6a3d4cb36048f4f0959517 (diff) | |
| parent | 8f58243483cbbe110f978c4ef85de26c77169352 (diff) | |
Merge "Fix typo from @see : to @see."
| -rw-r--r-- | telephony/java/android/telephony/PinResult.java | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/telephony/java/android/telephony/PinResult.java b/telephony/java/android/telephony/PinResult.java index 683e85387c08..c14bd91d022c 100644 --- a/telephony/java/android/telephony/PinResult.java +++ b/telephony/java/android/telephony/PinResult.java @@ -67,9 +67,9 @@ public final class PinResult implements Parcelable { /** * Returns either success, incorrect or failure. * - * @see: #PIN_RESULT_TYPE_SUCCESS - * @see: #PIN_RESULT_TYPE_INCORRECT - * @see: #PIN_RESULT_TYPE_FAILURE + * @see #PIN_RESULT_TYPE_SUCCESS + * @see #PIN_RESULT_TYPE_INCORRECT + * @see #PIN_RESULT_TYPE_FAILURE * @return The result type of the pin attempt. */ public @PinResultType int getType() { @@ -94,9 +94,9 @@ public final class PinResult implements Parcelable { * PinResult constructor * * @param type The type of pin result. - * @see: #PIN_RESULT_TYPE_SUCCESS - * @see: #PIN_RESULT_TYPE_INCORRECT - * @see: #PIN_RESULT_TYPE_FAILURE + * @see #PIN_RESULT_TYPE_SUCCESS + * @see #PIN_RESULT_TYPE_INCORRECT + * @see #PIN_RESULT_TYPE_FAILURE * @param attemptsRemaining Number of pin attempts remaining. */ public PinResult(@PinResultType int type, int attemptsRemaining) { |