-
Enhancement
-
Resolution: Done
-
Major
-
None
-
None
org/jboss/as/connector/services/resourceadapters/DirectAdminObjectActivatorService#start method creates a map raConfigProperties, but is not used. We should be able to remove it.
Map<String, String> raConfigProperties = new HashMap<String, String>(); Map<String, String> aoConfigProperties = new HashMap<String, String>(); if (properties != null) { for (Map.Entry<String,String> prop : properties.entrySet()) { String key = prop.getKey(); String value = prop.getValue(); if (key.startsWith("ra.")) { raConfigProperties.put(key.substring(3), value); } else if (key.startsWith("ao.")) {