Skip to content

Commit 820b17a

Browse files
Test fabric shard global cypher aggregation
1 parent db884d8 commit 820b17a

File tree

1 file changed

+0
-2
lines changed

1 file changed

+0
-2
lines changed

test-utils/src/main/java/org/neo4j/gds/canonization/CanonicalAdjacencyMatrix.java

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,6 @@
2828
import java.util.HashMap;
2929
import java.util.List;
3030
import java.util.Map;
31-
import java.util.Set;
3231
import java.util.function.BiFunction;
3332
import java.util.stream.Collectors;
3433

@@ -104,7 +103,6 @@ public static String canonicalize(Graph g) {
104103
Map<Long, List<String>> outAdjacencies = new HashMap<>();
105104
Map<Long, List<String>> inAdjacencies = new HashMap<>();
106105
for (RelationshipType relationshipType : g.schema().relationshipSchema().availableTypes()) {
107-
var relTypeGraph = g.relationshipTypeFilteredGraph(Set.of(relationshipType));
108106
g.forEachNode(nodeId -> {
109107
g.forEachRelationship(nodeId, 1.0, (sourceId, targetId, propertyValue) -> {
110108
outAdjacencies.compute(

0 commit comments

Comments
 (0)