Fix wrong HTML entity replacement in tool task

This commit is contained in:
ljacqu
2016-12-17 13:51:44 +01:00
parent 811ceaf7ff
commit cb64e83988
3 changed files with 15 additions and 21 deletions
@@ -45,6 +45,6 @@ public class AddJavaDocToMessageEnumTask implements AutoToolTask {
return configuration.getString(key.getKey())
.replaceAll("&[0-9a-f]", "")
.replace("&", "&")
.replace("<", "&gt;");
.replace("<", "&lt;");
}
}