XmlEnvironment: Use correct method to obatain effective namespace.

This commit is contained in:
Aditya Borikar 2020-08-08 20:14:39 +05:30
parent cf92566e26
commit c9cf4f1541
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;
}