src/main/java/org/apache/log4j/rule/AndRule.java [113:124]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
                Map.Entry entry = (Map.Entry)iter.next();
                Object key = entry.getKey();
                Set value = (Set)entry.getValue();
                Set mainSet = (Set) matches.get(key);
                if (mainSet == null) {
                    mainSet = new HashSet();
                    matches.put(key, mainSet);
                }
                mainSet.addAll(value);
            }
        }
        return result;
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



src/main/java/org/apache/log4j/rule/NotRule.java [90:101]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
            Map.Entry entry = (Map.Entry)iter.next();
            Object key = entry.getKey();
            Set value = (Set)entry.getValue();
            Set mainSet = (Set) matches.get(key);
            if (mainSet == null) {
                mainSet = new HashSet();
                matches.put(key, mainSet);
            }
            mainSet.addAll(value);
        }
    }
    return result;
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



