diff options
| author | 2013-05-24 21:40:45 +0000 | |
|---|---|---|
| committer | 2013-05-24 21:40:45 +0000 | |
| commit | eebec7b1fe68cef9c4feed1f56af2592b402a629 (patch) | |
| tree | f14c6a083bc241ae09a8577718a2df49b42d9d81 | |
| parent | 14ccf554d0168d94c35c058b057d7d1aca228c6e (diff) | |
| parent | 26510320646339fc59e01d392f96efeeac6d91dd (diff) | |
Merge "fix javadoc links. turns out, without parameters, javadoc will link to the best matching method signature, even if it's from the superclass. So these were pointing to Object.nofify()" into jb-mr2-dev
| -rw-r--r-- | core/java/android/service/notification/StatusBarNotification.java | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/core/java/android/service/notification/StatusBarNotification.java b/core/java/android/service/notification/StatusBarNotification.java index e8cc24b9933b..19f8678a427a 100644 --- a/core/java/android/service/notification/StatusBarNotification.java +++ b/core/java/android/service/notification/StatusBarNotification.java @@ -190,13 +190,13 @@ public class StatusBarNotification implements Parcelable { return pkg; } - /** The id supplied to {@link android.app.NotificationManager#notify}. */ + /** The id supplied to {@link android.app.NotificationManager#notify(int,Notification)}. */ public int getId() { return id; } - /** The tag supplied to {@link android.app.NotificationManager#notify}, or null if no tag - * was specified. */ + /** The tag supplied to {@link android.app.NotificationManager#notify(int,Notification)}, + * or null if no tag was specified. */ public String getTag() { return tag; } @@ -217,7 +217,7 @@ public class StatusBarNotification implements Parcelable { } /** The {@link android.app.Notification} supplied to - * {@link android.app.NotificationManager#notify}. */ + * {@link android.app.NotificationManager#notify(int,Notification)}. */ public Notification getNotification() { return notification; } |