surefire-grouper/src/main/java/org/apache/maven/surefire/group/match/AndGroupMatcher.java [81:101]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
        int result = 1;
        result = prime * result;
        for (GroupMatcher matcher : getMatchers()) {
            result += matcher.hashCode();
        }
        return result;
    }

    @Override
    public boolean equals(Object obj) {
        if (this == obj) {
            return true;
        }
        if (obj == null) {
            return false;
        }
        if (getClass() != obj.getClass()) {
            return false;
        }
        AndGroupMatcher other = (AndGroupMatcher) obj;
        return getMatchers().equals(other.getMatchers());
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



surefire-grouper/src/main/java/org/apache/maven/surefire/group/match/OrGroupMatcher.java [81:101]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
        int result = 1;
        result = prime * result;
        for (GroupMatcher matcher : getMatchers()) {
            result += matcher.hashCode();
        }
        return result;
    }

    @Override
    public boolean equals(Object obj) {
        if (this == obj) {
            return true;
        }
        if (obj == null) {
            return false;
        }
        if (getClass() != obj.getClass()) {
            return false;
        }
        AndGroupMatcher other = (AndGroupMatcher) obj;
        return getMatchers().equals(other.getMatchers());
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



