added another missing closing quotation mark

This commit is contained in:
patrick-werner 2020-02-25 10:19:01 +01:00
parent c88d763bd8
commit dc1c68e55a
1 changed files with 1 additions and 1 deletions

View File

@ -2570,7 +2570,7 @@ public class InstanceValidator extends BaseValidator implements IResourceValidat
} else if (ref.split("/").length != 2 && ref.split("/").length != 4) {
if (isTransaction) {
rule(errors, IssueType.INVALID, -1, -1, path, isSearchUrl(ref), "Relative URLs must be of the format [ResourceName]/[id], or a search ULR is allowed ([type]?parameters. Encountered " + ref);
rule(errors, IssueType.INVALID, -1, -1, path, isSearchUrl(ref), "Relative URLs must be of the format [ResourceName]/[id], or a search ULR is allowed ([type]?parameters. Encountered " + ref + ")");
} else {
rule(errors, IssueType.INVALID, -1, -1, path, false, "Relative URLs must be of the format [ResourceName]/[id]. Encountered " + ref);
}