(String key, boolean defaultValue)
| 150 | } |
| 151 | |
| 152 | public static boolean getConfigBoolean(String key, boolean defaultValue) { |
| 153 | return config.getBoolean(key, defaultValue); |
| 154 | } |
| 155 | |
| 156 | public static List<String> getConfigList(String key) { |
| 157 | List<String> result = new ArrayList<>(); |
no outgoing calls