You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Jul 4, 2024. It is now read-only.
I found in the Neo4jBatchHandeler.java class, there is a code block using Label.equal()
for (Label lbl : labels) {
if (label.equals(lbl)) {//it seems should't be this way, but should be label.name.equals(lbl)
hit = true;
break;
}
labelList.add(lbl);
}
Thanks for your code. Also I'm new to Neo4j.
I found in the Neo4jBatchHandeler.java class, there is a code block using Label.equal()
for (Label lbl : labels) {
if (label.equals(lbl)) {//it seems should't be this way, but should be label.name.equals(lbl)
hit = true;
break;
}
labelList.add(lbl);
}
According to Neo4j API, http://api.neo4j.org/2.0.0/org/neo4j/graphdb/Label.html
Label.name() is the unique identifier for Label, so it looks like
if (label.equals(lbl))
should be
if (label.name().equals(lbl))
The text was updated successfully, but these errors were encountered: