public boolean equals()

in log4j-changelog/src/main/java/org/apache/logging/log4j/changelog/exporter/ChangelogExporterTemplate.java [56:67]


    public boolean equals(Object instance) {
        if (this == instance) {
            return true;
        }
        if (instance == null || getClass() != instance.getClass()) {
            return false;
        }
        ChangelogExporterTemplate template = (ChangelogExporterTemplate) instance;
        return failIfNotFound == template.failIfNotFound &&
                sourceFileName.equals(template.sourceFileName) &&
                targetFileName.equals(template.targetFileName);
    }