remove spurious log outputs

This commit is contained in:
Grahame Grieve 2020-08-27 12:36:50 +10:00
parent e669103aa7
commit de5310c13a
2 changed files with 2 additions and 2 deletions

View File

@ -39,7 +39,7 @@ public class CDARoundTripTests {
context.loadFromFile(TestingUtilities.loadTestResourceStream("validator", "cda", "cda.xml"), "cda.xml", null);
for (StructureDefinition sd : context.getStructures()) {
if (!sd.hasSnapshot()) {
System.out.println("generate snapshot for " + sd.getUrl());
// System.out.println("generate snapshot for " + sd.getUrl());
context.generateSnapshot(sd, true);
}
}

View File

@ -83,7 +83,7 @@ public class ParsingTests {
@ParameterizedTest(name = "{index}: file {0}")
@MethodSource("data")
public void test(String name) throws Exception {
System.out.println(name);
// System.out.println(name);
byte[] b = TextFile.streamToBytes(npm.load("package", name));
String src = new String(b);
Resource r = new JsonParser().parse(b);