in geronimo-microprofile-reporter/src/main/java/org/apache/geronimo/microprofile/reporter/storage/templating/TemplatingEngine.java [399:408]
public boolean equals(final Object o) {
if (this == o) {
return true;
}
if (o == null || AccessorKey.class != o.getClass()) {
return false;
}
final AccessorKey that = AccessorKey.class.cast(o);
return Objects.equals(type, that.type) && Objects.equals(name, that.name);
}