remove erroneous debugging output

This commit is contained in:
Jonathan Shook 2020-04-20 02:24:33 -05:00
parent 326a01dd9b
commit ec9b760470

View File

@ -46,9 +46,7 @@ public class NBIO implements NBPathsAPI.Facets {
}
public static List<String> readLines(String filename) {
System.err.println("loading broken file");
Content<?> data = NBIO.all().prefix("data").name(filename).first().orElseThrow();
System.err.println("data:" + data.asPath());
String[] split = data.getCharBuffer().toString().split("\n");
return Arrays.asList(split);
}