remove obsolete notification visibility log

Bug: 21248682
Change-Id: I8656a924514dd01ebc003f3cc81b1a9316919321
This commit is contained in:
Chris Wren
2015-06-05 16:12:18 -04:00
parent 82ba59de0e
commit 7a4f9ca937

View File

@@ -625,12 +625,6 @@ public class NotificationManagerService extends SystemService {
@Override
public void onNotificationVisibilityChanged(
String[] newlyVisibleKeys, String[] noLongerVisibleKeys) {
// Using ';' as separator since eventlogs uses ',' to separate
// args.
// TODO remove this: b/21248682
EventLogTags.writeNotificationVisibilityChanged(
TextUtils.join(";", newlyVisibleKeys),
TextUtils.join(";", noLongerVisibleKeys));
synchronized (mNotificationList) {
for (String key : newlyVisibleKeys) {
NotificationRecord r = mNotificationsByKey.get(key);