Fix compile error

This commit is contained in:
James Agnew 2019-12-06 17:06:53 -05:00
parent 438ef70fdb
commit 5e69fcdc5f
1 changed files with 1 additions and 1 deletions

View File

@ -43,7 +43,7 @@ public class Parser {
IParser parser = ctx.newJsonParser(); IParser parser = ctx.newJsonParser();
// Serialize it // Serialize it
String serialized = parser.encodeResourceToString(patient) String serialized = parser.encodeResourceToString(patient);
System.out.println(serialized); System.out.println(serialized);
//END SNIPPET: createParser //END SNIPPET: createParser
} }