#977 Add support for R4B

This commit is contained in:
Grahame Grieve 2022-11-04 23:37:49 +11:00
parent a66bf51e5b
commit b43581f588
1 changed files with 3 additions and 0 deletions

View File

@ -375,6 +375,9 @@ public class ValidationEngine implements IValidatorResourceFetcher, IValidationP
if (VersionUtilities.isR4Ver(version)) {
pid = "hl7.terminology.r4";
}
if (VersionUtilities.isR4BVer(version)) {
pid = "hl7.terminology.r4";
}
if (VersionUtilities.isR5Ver(version)) {
pid = "hl7.terminology.r5";
}