in drools-benchmarks-parent/drools-benchmarks/src/main/java/org/drools/benchmarks/datastructures/StringQueueEntry.java [27:32]
public boolean equals(Object o) {
if (this == o) return true;
if (o == null || getClass() != o.getClass()) return false;
StringQueueEntry that = (StringQueueEntry) o;
return value.equals(that.value);
}