Skip to content

Commit 35fb706

Browse files
committed
Remove duplicate string join
1 parent 96eaf1c commit 35fb706

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

algo-params/similarity-params/src/main/java/org/neo4j/gds/similarity/filtering/NodeIdNodeFilterSpec.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ public void validate(
6767
var errorMessage = formatWithLocale(
6868
"Invalid configuration value `%s`, the following nodes are missing from the graph: [%s]",
6969
nodeFilterType,
70-
String.join(",", missingNodes)
70+
missingNodes
7171
);
7272

7373
throw new IllegalArgumentException(errorMessage);

0 commit comments

Comments
 (0)