public boolean equals()

in src/main/java/org/apache/sling/feature/extension/apiregions/api/DeprecationInfo.java [164:177]


    public boolean equals(Object obj) {
        if (this == obj) {
            return true;
        }
        if (obj == null) {
            return false;
        }
        if (getClass() != obj.getClass()) {
            return false;
        }
        DeprecationInfo other = (DeprecationInfo) obj;
        return Objects.equals(message, other.message) && Objects.equals(since, other.since) && Objects.equals(forRemoval, other.forRemoval)
               && Objects.equals(mode, other.mode);
    }