boolean equals()

in module/geb-waiting/src/main/groovy/geb/waiting/Wait.groovy [70:78]


    boolean equals(other) {
        if (this.is(other)) {
            true
        } else if (!(other instanceof Wait)) {
            false
        } else {
            this.timeout == other.timeout && this.retryInterval == other.retryInterval && this.includeCauseInExceptionMessage == other.includeCauseInExceptionMessage
        }
    }