diff options
author | Dianne Hackborn <hackbod@google.com> | 2011-09-23 12:57:44 -0700 |
---|---|---|
committer | Dianne Hackborn <hackbod@google.com> | 2011-09-23 13:39:33 -0700 |
commit | 90c52de28691ca0bbbf7c039ef20f85ce46882cc (patch) | |
tree | 3a6dcf93f186f44561a312927d7fe2e97e45f6d4 /services/java/com/android/server/AlarmManagerService.java | |
parent | 67c5b1251178532726964c2e0f4229d079ff0a3e (diff) |
Fix issue #5173952: Opening a Notification From Lock Screen...
...Should Skip Unsecure Lockscreen (ICS)
Also while I am in there, clean up logging of intent objects to include
even less sensitive information, while showing the true Intent in dump
output (since apps can't get to that).
Change-Id: I35fed714645b21e4304ba38a11ebb9c4c963538e
Diffstat (limited to 'services/java/com/android/server/AlarmManagerService.java')
-rw-r--r-- | services/java/com/android/server/AlarmManagerService.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/services/java/com/android/server/AlarmManagerService.java b/services/java/com/android/server/AlarmManagerService.java index 5ffcdc50e800..b8c44d9cf99a 100644 --- a/services/java/com/android/server/AlarmManagerService.java +++ b/services/java/com/android/server/AlarmManagerService.java @@ -477,7 +477,7 @@ class AlarmManagerService extends IAlarmManager.Stub { : bs.filterStats.entrySet()) { pw.print(" "); pw.print(fe.getValue().count); pw.print(" alarms: "); - pw.println(fe.getKey().getIntent().toShortString(true, false)); + pw.println(fe.getKey().getIntent().toShortString(false, true, false)); } } } |