From aaf0150518b758d511e85d1ee4643b31ee7908cb Mon Sep 17 00:00:00 2001 From: Grahame Grieve Date: Wed, 11 Dec 2024 04:04:09 +1100 Subject: [PATCH] remove spurious logging code --- .../java/org/hl7/fhir/igtools/publisher/TestDataFactory.java | 1 - 1 file changed, 1 deletion(-) diff --git a/org.hl7.fhir.publisher.core/src/main/java/org/hl7/fhir/igtools/publisher/TestDataFactory.java b/org.hl7.fhir.publisher.core/src/main/java/org/hl7/fhir/igtools/publisher/TestDataFactory.java index 584999628..eccd52b02 100644 --- a/org.hl7.fhir.publisher.core/src/main/java/org/hl7/fhir/igtools/publisher/TestDataFactory.java +++ b/org.hl7.fhir.publisher.core/src/main/java/org/hl7/fhir/igtools/publisher/TestDataFactory.java @@ -168,7 +168,6 @@ private byte[] runInstance(LiquidDocument template, List columns, List columns, List> rows, String format) throws JsonException, IOException { BaseCSVWrapper base = BaseCSVWrapper.forRows(columns, rows); String cnt = liquid.evaluate(template, base, this).trim(); - TextFile.stringToFile(cnt, "/Users/grahamegrieve/temp/liquid.out.json"); if ("json".equals(format)) { JsonObject j = JsonParser.parseObject(cnt, true); return JsonParser.composeBytes(j, true);