Searched refs:configApp (Results 1 – 1 of 1) sorted by relevance
1720 private void printConfig(@NonNull PersistableBundle configApp, in printConfig() argument1723 if (configApp == null) { in printConfig()1730 List<String> sortedKeys = new ArrayList<String>(configApp.keySet()); in printConfig()1735 if (configApp.get(key) != null && configApp.get(key) instanceof Object[]) { in printConfig()1737 Arrays.toString((Object[]) configApp.get(key))); in printConfig()1738 } else if (configApp.get(key) != null && configApp.get(key) instanceof int[]) { in printConfig()1739 indentPW.println(key + " = " + Arrays.toString((int[]) configApp.get(key))); in printConfig()1741 indentPW.println(key + " = " + configApp.get(key)); in printConfig()