Searched refs:configApp (Results 1 – 1 of 1) sorted by relevance
1457 private void printConfig(PersistableBundle configApp, IndentingPrintWriter indentPW, in printConfig() argument1460 if (configApp == null) { in printConfig()1467 List<String> sortedKeys = new ArrayList<String>(configApp.keySet()); in printConfig()1472 if (configApp.get(key) != null && configApp.get(key) instanceof Object[]) { in printConfig()1474 Arrays.toString((Object[]) configApp.get(key))); in printConfig()1475 } else if (configApp.get(key) != null && configApp.get(key) instanceof int[]) { in printConfig()1476 indentPW.println(key + " = " + Arrays.toString((int[]) configApp.get(key))); in printConfig()1478 indentPW.println(key + " = " + configApp.get(key)); in printConfig()