(String key, String space, int tab, ConfigObject value, BufferedWriter out)
| 289 | } |
| 290 | |
| 291 | private void writeNode(String key, String space, int tab, ConfigObject value, BufferedWriter out) throws IOException { |
| 292 | key = KEYWORDS.contains(key) ? FormatHelper.inspect(key) : key; |
| 293 | out.append(space).append(key).append(" {"); |
| 294 | out.newLine(); |
| 295 | writeConfig("", value, out, tab + 1, true); |
| 296 | out.append(space).append('}'); |
| 297 | out.newLine(); |
| 298 | } |
| 299 | |
| 300 | private static Properties convertValuesToString(Map props) { |
| 301 | Properties newProps = new Properties(); |
no test coverage detected