We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e6dc906 commit 8b4caacCopy full SHA for 8b4caac
core/src/main/java/org/neo4j/graphalgo/core/loading/GraphStoreCatalog.java
@@ -120,7 +120,8 @@ public static void remove(
120
));
121
}
122
123
- for (var username: usersWithMatchingGraphs) {
+ if (!usersWithMatchingGraphs.isEmpty()) {
124
+ var username = usersWithMatchingGraphs.iterator().next();
125
getUserCatalog(username).remove(
126
userCatalogKey,
127
removedGraphConsumer,
0 commit comments