diff options
| author | 2016-12-22 03:07:19 +0000 | |
|---|---|---|
| committer | 2016-12-22 03:07:19 +0000 | |
| commit | 1edb9a54b378197e4747208f042d9751c823d22e (patch) | |
| tree | 64e79bbdfddf6b2254396ff7ac4a11e18fbd5787 | |
| parent | 1fd9c8d351caa81fc3615bbb010e1c6a5ac80de8 (diff) | |
| parent | f294cdeb27ca38d5026f993f4d2abf690a78b9b4 (diff) | |
NetworkNotificationManager: remove spammy log am: 1f0d972efc
am: f294cdeb27
Change-Id: I2b9b1b52e11ddf784244eedf1311f3b015841215
| -rw-r--r-- | services/core/java/com/android/server/connectivity/NetworkNotificationManager.java | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/services/core/java/com/android/server/connectivity/NetworkNotificationManager.java b/services/core/java/com/android/server/connectivity/NetworkNotificationManager.java index c0550c6c7876..70faa5ac4a4a 100644 --- a/services/core/java/com/android/server/connectivity/NetworkNotificationManager.java +++ b/services/core/java/com/android/server/connectivity/NetworkNotificationManager.java @@ -221,11 +221,10 @@ public class NetworkNotificationManager { } public void clearNotification(int id) { - final String tag = tagFor(id); if (mNotificationTypeMap.indexOfKey(id) < 0) { - Slog.e(TAG, "cannot clear unknown notification with tag=" + tag); return; } + final String tag = tagFor(id); final int eventId = mNotificationTypeMap.get(id); if (DBG) { Slog.d(TAG, String.format("clearing notification tag=%s event=%s", tag, |