Searched refs:configApp (Results 1 – 1 of 1) sorted by relevance
1161 private void printConfig(PersistableBundle configApp, IndentingPrintWriter indentPW, in printConfig() argument1164 if (configApp == null) { in printConfig()1171 List<String> sortedKeys = new ArrayList<String>(configApp.keySet()); in printConfig()1176 if (configApp.get(key) != null && configApp.get(key) instanceof Object[]) { in printConfig()1178 Arrays.toString((Object[]) configApp.get(key))); in printConfig()1179 } else if (configApp.get(key) != null && configApp.get(key) instanceof int[]) { in printConfig()1180 indentPW.println(key + " = " + Arrays.toString((int[]) configApp.get(key))); in printConfig()1182 indentPW.println(key + " = " + configApp.get(key)); in printConfig()