fix apparent bug in Base64binary

This commit is contained in:
Grahame Grieve 2020-04-03 23:59:15 +11:00
parent 101fbe3126
commit 6d1fe2ff1e

View File

@ -154,5 +154,8 @@ public class Base64BinaryType extends PrimitiveType<byte[]> implements IPrimitiv
return ca.uhn.fhir.util.ElementUtil.isEmpty(id, extension) && !hasValue();
}
@Override
public String primitiveValue() {
return encode(myValue);
}
}