remove spurious log outputs
This commit is contained in:
parent
e669103aa7
commit
de5310c13a
|
@ -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);
|
||||
}
|
||||
}
|
||||
|
|
|
@ -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);
|
||||
|
|
Loading…
Reference in New Issue