This commit is contained in:
Grahame Grieve 2022-01-30 07:57:39 +11:00
commit 1aa1e288ec
2 changed files with 9 additions and 2 deletions

View File

@ -76,6 +76,10 @@ public class VersionUtilities {
return "hl7.fhir.r4b.core";
}
if (isR5Ver(v)) {
return "hl7.fhir.r5.core";
}
if ("current".equals(v)) {
return "hl7.fhir.r5.core";
}
@ -101,6 +105,9 @@ public class VersionUtilities {
if (isR4Ver(v)) {
return "4.0.1";
}
if (isR5Ver(v)) {
return "5.0.0";
}
if (v != null && v.startsWith(CURRENT_VERSION)) {
return "current";
}