Fixed pattern display.

This commit is contained in:
Christian P. MOMON 2020-10-26 17:06:29 +01:00
parent 0d440d6ef3
commit 8e9055b9e6

View file

@ -213,7 +213,7 @@ public class PropertyChecker
else else
{ {
ended = true; ended = true;
PropertyCheck check = new PropertyCheck(0, rule.getPathPattern(), Status.ERROR, "Propriété manquante"); PropertyCheck check = new PropertyCheck(0, rule.getPathPattern().replaceAll("\\\\.", "."), Status.ERROR, "Propriété manquante");
result.add(check); result.add(check);
} }
} }