Unable to unescape consecutive escape char like <errors>. Below is the sample code:
String error = "&lt;errors&gt;";
String out = org.apache.commons.lang3.StringEscapeUtils.unescapeXml(error);
System.out.println(out);
Current Output: <errors>
Expected output: <errors>
This code ran on JDK 11.0.16 version and commons-lang3-3.4.jar version.