Includes global-allowed-methods instead of overriding them

This commit is contained in:
Lukasz Lenart
2015-10-06 13:27:53 +02:00
parent 221ef32e37
commit e28e7f69b9
@@ -860,7 +860,7 @@ public class XmlConfigurationProvider implements ConfigurationProvider {
if (n != null) {
String s = n.getNodeValue().trim();
if (s.length() > 0) {
allowedMethods = TextParseUtil.commaDelimitedStringToSet(s);
allowedMethods.addAll(TextParseUtil.commaDelimitedStringToSet(s));
}
}
}