Skip to content

Commit

Permalink
Issue #2582 - minor update to validateProfileReferences method
Browse files Browse the repository at this point in the history
Signed-off-by: John T.E. Timm <johntimm@us.ibm.com>
  • Loading branch information
JohnTimm committed Jul 12, 2021
1 parent 566fddc commit 7dd7f7e
Showing 1 changed file with 1 addition and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -326,9 +326,7 @@ private void validateProfileReferences(FHIRPathResourceNode resourceNode, List<S
} else if (!ProfileSupport.isApplicable(profile, resourceType)) {
issues.add(issue(IssueSeverity.ERROR, IssueType.INVALID, "Profile '" + url + "' is not applicable to resource type: " + resourceType.getSimpleName(), resourceNode));
}
if (failFast && hasErrors(issues)) {
aborted = true;
}
aborted = failFast && hasErrors(issues);
}
}

Expand Down

0 comments on commit 7dd7f7e

Please sign in to comment.