public boolean equals()

in src/main/java/org/apache/sling/scriptingbundle/plugin/processor/filevault/VaultContentXmlReader.java [147:157]


    public boolean equals(Object obj) {
        if (this == obj) {
            return true;
        }
        if (obj instanceof VaultContentXmlReader) {
            VaultContentXmlReader other = (VaultContentXmlReader) obj;
            return Objects.equals(path, other.path) && Objects.equals(resourceSuperType, other.resourceSuperType) &&
                    Objects.equals(requiredResourceTypes, other.requiredResourceTypes);
        }
        return false;
    }