in commons-rdf-jena/src/main/java/org/apache/commons/rdf/jena/impl/JenaBlankNodeImpl.java [40:52]
public boolean equals(final Object other) {
if (other == this) {
return true;
}
if (other == null) {
return false;
}
if (!(other instanceof BlankNode)) {
return false;
}
final BlankNode bNode = (BlankNode) other;
return uniqueReference().equals(bNode.uniqueReference());
}