DO NOT MERGE Fix other String.format issues in NetworkNotificationManager.java
Commit51727428fcadded a string format which caused an exception. On top of the fixes to this from5a45327352, we can also fix a few more issues here with some missing arguments to other String.format invocations in the aforementioned CL, and other formatting problems. Bug: 33737715 Test: Build and run SUW (cherry picked from commite46b47d85d) Change-Id: I40064d3e1a0f0300c43bdbc51839b579a5394a36
This commit is contained in:
committed by
Hugo Benichi
parent
d7423d12a9
commit
f2e4cc9037
@@ -143,7 +143,8 @@ public class NetworkNotificationManager {
|
||||
if (DBG) {
|
||||
Slog.d(TAG, String.format(
|
||||
"showNotification tag=%s event=%s transport=%s extraInfo=%s highPrioriy=%s",
|
||||
tag, nameOf(eventId), getTransportName(transportType), extraInfo, highPriority));
|
||||
tag, nameOf(eventId), getTransportName(transportType), extraInfo,
|
||||
highPriority));
|
||||
}
|
||||
|
||||
Resources r = Resources.getSystem();
|
||||
@@ -227,13 +228,14 @@ public class NetworkNotificationManager {
|
||||
}
|
||||
final int eventId = mNotificationTypeMap.get(id);
|
||||
if (DBG) {
|
||||
Slog.d(TAG, String.format("clearing notification tag=%s event=", tag, nameOf(eventId)));
|
||||
Slog.d(TAG, String.format("clearing notification tag=%s event=%s", tag,
|
||||
nameOf(eventId)));
|
||||
}
|
||||
try {
|
||||
mNotificationManager.cancelAsUser(tag, eventId, UserHandle.ALL);
|
||||
} catch (NullPointerException npe) {
|
||||
Slog.d(TAG, String.format(
|
||||
"failed to clear notification tag=%s event=", tag, nameOf(eventId)), npe);
|
||||
"failed to clear notification tag=%s event=%s", tag, nameOf(eventId)), npe);
|
||||
}
|
||||
mNotificationTypeMap.delete(id);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user