diff options
author | John Spurlock <jspurlock@google.com> | 2013-11-25 11:58:37 -0500 |
---|---|---|
committer | John Spurlock <jspurlock@google.com> | 2013-11-25 11:58:37 -0500 |
commit | 125d133bcce56403a9b4d1cdbbc61a7cb1d7f8e1 (patch) | |
tree | fa95d4d2de9960321a768ba4d1f750d2554ddbc3 /core/java | |
parent | 6000f1ed3d402e3136df173d987c901cc3cc1ff2 (diff) | |
download | frameworks_base-125d133bcce56403a9b4d1cdbbc61a7cb1d7f8e1.zip frameworks_base-125d133bcce56403a9b4d1cdbbc61a7cb1d7f8e1.tar.gz frameworks_base-125d133bcce56403a9b4d1cdbbc61a7cb1d7f8e1.tar.bz2 |
Fix bad @see links in Intent.java.
Change-Id: Ifa283214798f8d2de4f8bdb17ed78609a7d43293
Diffstat (limited to 'core/java')
-rw-r--r-- | core/java/android/content/Intent.java | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/core/java/android/content/Intent.java b/core/java/android/content/Intent.java index a289649..a047668 100644 --- a/core/java/android/content/Intent.java +++ b/core/java/android/content/Intent.java @@ -4415,7 +4415,7 @@ public class Intent implements Parcelable, Cloneable { * Return the {@link ClipData} associated with this Intent. If there is * none, returns null. See {@link #setClipData} for more information. * - * @see #setClipData; + * @see #setClipData */ public ClipData getClipData() { return mClipData; @@ -7153,8 +7153,8 @@ public class Intent implements Parcelable, Cloneable { * * @param type MIME data type to normalize * @return normalized MIME data type, or null if the input was null - * @see {@link #setType} - * @see {@link #setTypeAndNormalize} + * @see #setType + * @see #setTypeAndNormalize */ public static String normalizeMimeType(String type) { if (type == null) { |