Merge "Fix broken StringBuilder construction."
This commit is contained in:
@@ -272,7 +272,7 @@ public class ServiceMonitor {
|
||||
|
||||
private static String bundleToString(Bundle bundle) {
|
||||
if (bundle == null) return null;
|
||||
StringBuilder sb = new StringBuilder('{');
|
||||
StringBuilder sb = new StringBuilder("{");
|
||||
for (String key : bundle.keySet()) {
|
||||
if (sb.length() > 1) sb.append(',');
|
||||
Object v = bundle.get(key);
|
||||
|
||||
Reference in New Issue
Block a user