diff --git a/cqf-fhir-utility/src/main/java/org/opencds/cqf/fhir/utility/adapter/IAdapter.java b/cqf-fhir-utility/src/main/java/org/opencds/cqf/fhir/utility/adapter/IAdapter.java index 9757e8c40..cd7da3493 100644 --- a/cqf-fhir-utility/src/main/java/org/opencds/cqf/fhir/utility/adapter/IAdapter.java +++ b/cqf-fhir-utility/src/main/java/org/opencds/cqf/fhir/utility/adapter/IAdapter.java @@ -120,7 +120,10 @@ public default String resolvePathString(IBase base, String path) { } else if (result instanceof IBaseReference reference) { return reference.getReferenceElement().getValue(); } else { - throw new UnprocessableEntityException("Path : {} on element of type {} could not be resolved", path, base.getClass().getSimpleName() ); + throw new UnprocessableEntityException( + "Path : {} on element of type {} could not be resolved", + path, + base.getClass().getSimpleName()); } }