You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
if (cs.getContent() == Enumerations.CodeSystemContentMode.NOTPRESENT && cs.hasSourcePackage() && cs.getSourcePackage().isTHO()) {
805
+
// we ignore these definitions - their version is completely wrong for a start
806
+
returnfalse;
807
+
}
808
+
}
809
+
if (tgt == null) {
810
+
returnfalse;
811
+
}
812
+
if (!tgt.hasVersion()) {
813
+
returnfalse;
814
+
}
815
+
if (PublisherBase.this.pf.pinningPolicy == PublisherUtils.PinningPolicy.FIX) {
816
+
PublisherBase.this.pf.pinCount++;
817
+
f.getErrors().add(newValidationMessage(ValidationMessage.Source.Publisher, ValidationMessage.IssueType.PROCESSING, path, "Pinned the version of "+url+" to "+tgt.getVersion(),
f.getErrors().add(newValidationMessage(ValidationMessage.Source.Publisher, ValidationMessage.IssueType.PROCESSING, path, "Pinned the version of "+url+" to "+tgt.getVersion()+" from choices of "+stringify(",", lst),
if (name.equals(pn) && value.startsWith(url+"|")) {
1348
-
if (!v.equals(value)) {
1349
-
if (t.hasUserData(UserDataNames.auto_added_parameter)) {
1350
-
thrownewFHIRException("An error occurred building the version manifest: the IGPublisher wanted to add version "+version+" but had already added version "+value.substring(version.indexOf("|")+1));
1351
-
} else {
1352
-
thrownewFHIRException("An error occurred building the version manifest: the IGPublisher wanted to add version "+version+" but found version "+value.substring(version.indexOf("|")+1)+" already specified");
if (name.equals(pn) && value.startsWith(url+"|")) {
1419
+
if (!v.equals(value)) {
1420
+
if (t.hasUserData(UserDataNames.auto_added_parameter)) {
1421
+
thrownewFHIRException("An error occurred building the version manifest: the IGPublisher wanted to add version "+version+" but had already added version "+value.substring(version.indexOf("|")+1));
1422
+
} else {
1423
+
thrownewFHIRException("An error occurred building the version manifest: the IGPublisher wanted to add version "+version+" but found version "+value.substring(version.indexOf("|")+1)+" already specified");
0 commit comments