in modules/privilizer/weaver/src/main/java/org/apache/commons/weaver/privilizer/Field.java [64:73]
public boolean equals(final Object obj) {
if (obj == this) {
return true;
}
if (!(obj instanceof Field)) {
return false;
}
final Field other = (Field) obj;
return StringUtils.equals(other.name, name) && Objects.equals(other.type, type);
}