Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

KEYCLOAK-4160 #3715

Merged
merged 1 commit into from Jan 9, 2017
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
KEYCLOAK-4160
  • Loading branch information
hmlnarik committed Jan 6, 2017
commit 0cb5ba0f6e83162d221681f47b470c3042eef237
Expand Up @@ -122,7 +122,6 @@ public static boolean wasWhitespacePeeked(XMLEventReader xmlEventReader, XMLEven
*/
public static String getAttributeValue(Attribute attribute) {
String str = trim(attribute.getValue());
str = StringUtil.getSystemPropertyAsString(str);
return str;
}

Expand Down Expand Up @@ -224,7 +223,6 @@ public static String getElementText(XMLEventReader xmlEventReader) throws Parsin
String str = null;
try {
str = xmlEventReader.getElementText().trim();
str = StringUtil.getSystemPropertyAsString(str);
} catch (XMLStreamException e) {
throw logger.parserException(e);
}
Expand Down