Merge pull request #3715 from hmlnarik/KEYCLOAK-4160

KEYCLOAK-4160
This commit is contained in:
Stian Thorgersen 2017-01-09 12:50:38 +01:00 committed by GitHub
commit 8a02ef1859

View file

@ -125,7 +125,6 @@ public class StaxParserUtil {
*/
public static String getAttributeValue(Attribute attribute) {
String str = trim(attribute.getValue());
str = StringUtil.getSystemPropertyAsString(str);
return str;
}
@ -227,7 +226,6 @@ public class StaxParserUtil {
String str = null;
try {
str = xmlEventReader.getElementText().trim();
str = StringUtil.getSystemPropertyAsString(str);
} catch (XMLStreamException e) {
throw logger.parserException(e);
}