geronimo-mail_2.1_spec/src/main/java/jakarta/mail/search/HeaderTerm.java [47:62]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
            if (values != null) {
                for (int i = 0; i < values.length; i++) {
                    final String value = values[i];
                    if (match(value)) {
                        return true;
                    }
                }
            }
            return false;
        } catch (final MessagingException e) {
            return false;
        }
    }

    @Override
    public boolean equals(final Object other) {
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



geronimo-mail_2.1_spec/src/main/java/jakarta/mail/search/MessageIDTerm.java [41:56]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
            if (values != null) {
                for (int i = 0; i < values.length; i++) {
                    final String value = values[i];
                    if (match(value)) {
                        return true;
                    }
                }
            }
            return false;
        } catch (final MessagingException e) {
            return false;
        }
    }
    
    @Override
    public boolean equals(final Object other) {
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



