summaryrefslogtreecommitdiffstats
path: root/core
diff options
context:
space:
mode:
authorJohn Spurlock <jspurlock@google.com>2013-07-26 10:42:56 -0400
committerJohn Spurlock <jspurlock@google.com>2013-07-26 10:42:56 -0400
commita381d375f37fa8fb4c606a5ba9b3e105f6e1ef1c (patch)
treebb2bae216068c6b7cfa24b46ac093f0d07e85a09 /core
parent6108dda2db730290c146f7afde557140b00b8c0a (diff)
downloadframeworks_base-a381d375f37fa8fb4c606a5ba9b3e105f6e1ef1c.zip
frameworks_base-a381d375f37fa8fb4c606a5ba9b3e105f6e1ef1c.tar.gz
frameworks_base-a381d375f37fa8fb4c606a5ba9b3e105f6e1ef1c.tar.bz2
StatusBarNotification cleanup.
Remove obsolete ctor and obsolete accessor comment. Change-Id: Ib72abc8fbd2a5f9a1b82da986094667f39e0bf62
Diffstat (limited to 'core')
-rw-r--r--core/java/android/service/notification/StatusBarNotification.java11
1 files changed, 0 insertions, 11 deletions
diff --git a/core/java/android/service/notification/StatusBarNotification.java b/core/java/android/service/notification/StatusBarNotification.java
index 19f8678..b5b9e14 100644
--- a/core/java/android/service/notification/StatusBarNotification.java
+++ b/core/java/android/service/notification/StatusBarNotification.java
@@ -33,23 +33,12 @@ public class StatusBarNotification implements Parcelable {
private final int uid;
private final String basePkg;
private final int initialPid;
- // TODO: make this field private and move callers to an accessor that
- // ensures sourceUser is applied.
-
private final Notification notification;
private final UserHandle user;
private final long postTime;
private final int score;
- /** This is temporarily needed for the JB MR1 PDK.
- * @hide */
- @Deprecated
- public StatusBarNotification(String pkg, int id, String tag, int uid, int initialPid, int score,
- Notification notification) {
- this(pkg, id, tag, uid, initialPid, score, notification, UserHandle.OWNER);
- }
-
/** @hide */
public StatusBarNotification(String pkg, int id, String tag, int uid, int initialPid, int score,
Notification notification, UserHandle user) {