From 04a89ea8bbfb3e9a27500a62335718a9167509ae Mon Sep 17 00:00:00 2001 From: "juan.marchionatto" Date: Wed, 27 Nov 2024 14:07:39 -0500 Subject: [PATCH] Fix op name --- .../ca/uhn/fhir/rest/server/provider/ProviderConstants.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/provider/ProviderConstants.java b/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/provider/ProviderConstants.java index 81fbf24e354..293d93970e3 100644 --- a/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/provider/ProviderConstants.java +++ b/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/provider/ProviderConstants.java @@ -246,7 +246,7 @@ public class ProviderConstants { public static final String OPERATION_EXPORT = "$export"; /** - * Operation name for the "$replace_references" operation + * Operation name for the "$replace-references" operation */ - public static final String OPERATION_REPLACE_REFERENCES = "$replace_references"; + public static final String OPERATION_REPLACE_REFERENCES = "$replace-references"; }