in log4j-docgen/src/main/java/org/apache/logging/log4j/docgen/generator/DocumentationTemplate.java [35:44]
public boolean equals(Object instance) {
if (this == instance) {
return true;
}
if (instance == null || getClass() != instance.getClass()) {
return false;
}
DocumentationTemplate that = (DocumentationTemplate) instance;
return Objects.equals(name, that.name) && Objects.equals(targetPath, that.targetPath);
}