Avoid cast in ParameterFilterInterceptor
----------------------------------------

                 Key: WW-3501
                 URL: https://issues.apache.org/jira/browse/WW-3501
             Project: Struts 2
          Issue Type: Improvement
          Components: Core Interceptors
    Affects Versions: 2.2.1
            Reporter: John Lindal
            Priority: Trivial


Since includesExcludesMap is defined as Map<String, Boolean>, instead of:

            for (Object o1 : includesExcludesMap.keySet()) {
                String currRule = (String) o1;

use:

            for (String currRule : includesExcludesMap.keySet()) {


-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.

Reply via email to