Removed a debug logging statement

This commit is contained in:
Rsl1122 2019-08-30 15:47:33 +03:00
parent 6ff04d3bdf
commit 184949efca

View File

@ -23,7 +23,6 @@ import java.nio.charset.StandardCharsets;
import java.nio.file.Files;
import java.nio.file.Path;
import java.util.ArrayList;
import java.util.Arrays;
import java.util.List;
import java.util.Scanner;
@ -147,7 +146,6 @@ public class ConfigReader implements Closeable {
// Parse a node "Key: value"
// Can not use StringUtils.split(line, ":", 2) - Relies on 2nd empty String for parent node parsing
String[] keyAndValue = line.split(":", 2);
System.out.println(Arrays.toString(keyAndValue));
if (keyAndValue.length <= 1) {
return handleMultiline(line);
}