KEYCLOAK-4160

This commit is contained in:
Hynek Mlnarik 2017-01-05 14:17:03 +01:00
parent 56160ef12b
commit 0cb5ba0f6e

View file

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