Merge pull request #419 from adiaholic/bugFix

XmlEnvironment: Use correct method to obatain effective namespace.
This commit is contained in:
Florian Schmaus 2020-08-11 14:19:03 +02:00 committed by GitHub
commit f00804ef72
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -71,7 +71,7 @@ public class XmlEnvironment {
}
public String getEffectiveNamespaceOrUse(String namespace) {
String effectiveNamespace = getEffectiveLanguage();
String effectiveNamespace = getEffectiveNamespace();
if (StringUtils.isNullOrEmpty(effectiveNamespace)) {
return namespace;
}