public boolean equals()

in mail-archive/james-wrapper/src/main/java/org/apache/james/mime4j/mboxiterator/CharBufferWrapper.java [55:64]


    public boolean equals(Object o) {
        if (this == o) return true;
        if (!(o instanceof CharBufferWrapper)) return false;

        CharBufferWrapper that = (CharBufferWrapper) o;

        if (!messageBuffer.equals(that.messageBuffer)) return false;

        return true;
    }