Skip to content

Commit

Permalink
Moved method based on feedback
Browse files Browse the repository at this point in the history
  • Loading branch information
basiliskus committed Mar 29, 2024
1 parent 3e28c3c commit b979d6b
Showing 1 changed file with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,10 @@ public class HapiFhirImplementation implements HapiFhir {

private HapiFhirImplementation() {}

public static HapiFhirImplementation getInstance() {
return INSTANCE;
}

/**
* Creates FHIRPath engine with a custom evaluation context.
*
Expand All @@ -29,10 +33,6 @@ private static IFhirPath createEngine() {
return engine;
}

public static HapiFhirImplementation getInstance() {
return INSTANCE;
}

@Override
public <T extends IBaseResource> T parseResource(
final String fhirResource, final Class<T> clazz) throws FhirParseException {
Expand Down

0 comments on commit b979d6b

Please sign in to comment.