Missed noe rename in #1769

This commit is contained in:
James Agnew 2020-03-22 13:27:04 -04:00
parent c2ae5a8326
commit f89661526c
9 changed files with 9 additions and 9 deletions

View File

@ -652,7 +652,7 @@ public class FhirContext {
* @since 5.0.0
*/
public IFhirPath newFhirPath() {
return myVersion.createFluentPathExecutor(this);
return myVersion.createFhirPathExecutor(this);
}
/**

View File

@ -38,7 +38,7 @@ import ca.uhn.fhir.rest.api.IVersionSpecificBundleFactory;
*/
public interface IFhirVersion {
IFhirPath createFluentPathExecutor(FhirContext theFhirContext);
IFhirPath createFhirPathExecutor(FhirContext theFhirContext);
IBaseResource generateProfile(RuntimeResourceDefinition theRuntimeResourceDefinition, String theServerBase);

View File

@ -41,7 +41,7 @@ public class FhirDstu2_1 implements IFhirVersion {
private String myId;
@Override
public IFhirPath createFluentPathExecutor(FhirContext theFhirContext) {
public IFhirPath createFhirPathExecutor(FhirContext theFhirContext) {
throw new UnsupportedOperationException("FluentPath is not supported in DSTU2 contexts");
}

View File

@ -42,7 +42,7 @@ public class FhirDstu2 implements IFhirVersion {
private String myId;
@Override
public IFhirPath createFluentPathExecutor(FhirContext theFhirContext) {
public IFhirPath createFhirPathExecutor(FhirContext theFhirContext) {
throw new UnsupportedOperationException("FluentPath is not supported in DSTU2 contexts");
}

View File

@ -44,7 +44,7 @@ public class FhirDstu3 implements IFhirVersion {
private String myId;
@Override
public IFhirPath createFluentPathExecutor(FhirContext theFhirContext) {
public IFhirPath createFhirPathExecutor(FhirContext theFhirContext) {
return new FhirPathDstu3(theFhirContext);
}

View File

@ -41,7 +41,7 @@ public class FhirDstu2Hl7Org implements IFhirVersion {
private String myId;
@Override
public IFhirPath createFluentPathExecutor(FhirContext theFhirContext) {
public IFhirPath createFhirPathExecutor(FhirContext theFhirContext) {
throw new UnsupportedOperationException("FluentPath is not supported in DSTU2 contexts");
}

View File

@ -42,7 +42,7 @@ public class FhirR4 implements IFhirVersion {
private String myId;
@Override
public IFhirPath createFluentPathExecutor(FhirContext theFhirContext) {
public IFhirPath createFhirPathExecutor(FhirContext theFhirContext) {
return new FhirPathR4(theFhirContext);
}

View File

@ -52,7 +52,7 @@ public class FhirR5 implements IFhirVersion {
private String myId;
@Override
public IFhirPath createFluentPathExecutor(FhirContext theFhirContext) {
public IFhirPath createFhirPathExecutor(FhirContext theFhirContext) {
return new FhirPathR5(theFhirContext);
}

View File

@ -41,7 +41,7 @@ public class FhirDstu2 implements IFhirVersion {
private String myId;
@Override
public IFhirPath createFluentPathExecutor(FhirContext theFhirContext) {
public IFhirPath createFhirPathExecutor(FhirContext theFhirContext) {
throw new UnsupportedOperationException("FluentPath is not supported in DSTU2 contexts");
}