From ba231fcabfdf8f8bd72dbb428b8d35ae14a1a14d Mon Sep 17 00:00:00 2001 From: John Spurlock Date: Tue, 18 Feb 2014 13:19:57 -0500 Subject: [PATCH] Fix bad @links in PendingIntent.java Change-Id: I0a0014e17907f5cf16c3536a99e41efa9dafc963 --- core/java/android/app/PendingIntent.java | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/core/java/android/app/PendingIntent.java b/core/java/android/app/PendingIntent.java index f6e1f72dba29..45467b8d9e18 100644 --- a/core/java/android/app/PendingIntent.java +++ b/core/java/android/app/PendingIntent.java @@ -205,7 +205,7 @@ public final class PendingIntent implements Parcelable { *

For security reasons, the {@link android.content.Intent} * you supply here should almost always be an explicit intent, * that is specify an explicit component to be delivered to through - * {@link Intent#setClass(android.content.Context, Class)} Intent.setClass

+ * {@link Intent#setClass(android.content.Context, Class) Intent.setClass}

* * @param context The Context in which this PendingIntent should start * the activity. @@ -236,7 +236,7 @@ public final class PendingIntent implements Parcelable { *

For security reasons, the {@link android.content.Intent} * you supply here should almost always be an explicit intent, * that is specify an explicit component to be delivered to through - * {@link Intent#setClass(android.content.Context, Class)} Intent.setClass

+ * {@link Intent#setClass(android.content.Context, Class) Intent.setClass}

* * @param context The Context in which this PendingIntent should start * the activity. @@ -328,7 +328,7 @@ public final class PendingIntent implements Parcelable { *

For security reasons, the {@link android.content.Intent} objects * you supply here should almost always be explicit intents, * that is specify an explicit component to be delivered to through - * {@link Intent#setClass(android.content.Context, Class)} Intent.setClass

+ * {@link Intent#setClass(android.content.Context, Class) Intent.setClass}

* * @param context The Context in which this PendingIntent should start * the activity. @@ -378,7 +378,7 @@ public final class PendingIntent implements Parcelable { *

For security reasons, the {@link android.content.Intent} objects * you supply here should almost always be explicit intents, * that is specify an explicit component to be delivered to through - * {@link Intent#setClass(android.content.Context, Class)} Intent.setClass

+ * {@link Intent#setClass(android.content.Context, Class) Intent.setClass}

* * @param context The Context in which this PendingIntent should start * the activity. @@ -448,7 +448,7 @@ public final class PendingIntent implements Parcelable { *

For security reasons, the {@link android.content.Intent} * you supply here should almost always be an explicit intent, * that is specify an explicit component to be delivered to through - * {@link Intent#setClass(android.content.Context, Class)} Intent.setClass

+ * {@link Intent#setClass(android.content.Context, Class) Intent.setClass}

* * @param context The Context in which this PendingIntent should perform * the broadcast. @@ -502,7 +502,7 @@ public final class PendingIntent implements Parcelable { *

For security reasons, the {@link android.content.Intent} * you supply here should almost always be an explicit intent, * that is specify an explicit component to be delivered to through - * {@link Intent#setClass(android.content.Context, Class)} Intent.setClass

+ * {@link Intent#setClass(android.content.Context, Class) Intent.setClass}

* * @param context The Context in which this PendingIntent should start * the service. -- 2.11.0