Fix typo.

This commit is contained in:
Jim Balhoff 2022-09-19 13:52:38 -04:00
parent ee7f148424
commit 27f87a42f4
1 changed files with 1 additions and 1 deletions

View File

@ -80,7 +80,7 @@ public class RdfParser extends RdfParserBase {
protected void composeInteger64(Complex parent, String parentType, String name, Integer64Type value, int index) {
if (value == null)
return;
Complex t = parent.predicate("fhir:"+name), index > -1;
Complex t = parent.predicate("fhir:"+name, index > -1);
t.predicate("fhir:v", ttlLiteral(value.asStringValue()), false);
composeElement(t, parentType, name, value, index);
}