Remove test code

This commit is contained in:
Tadgh 2023-10-05 09:04:15 -07:00
parent e896848ff5
commit 081c445098
1 changed files with 0 additions and 2 deletions

View File

@ -38,13 +38,11 @@ public class FhirPathR4 implements IFhirPath {
@Override
public <T extends IBase> List<T> evaluate(IBase theInput, String thePath, Class<T> theReturnType) {
ExpressionNode parsed;
System.out.println("zoop2");
try {
parsed = myEngine.parse(thePath);
} catch (FHIRException e) {
throw new FhirPathExecutionException(Msg.code(2409) + e);
}
System.out.println("zoop");
return (List<T>) evaluate(theInput, parsed, theReturnType);
}