Skip to content

Commit 544ef99

Browse files
committed
Fix compilation issue after cherry pick
1 parent 4b084cf commit 544ef99

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

subgraph-filtering/src/main/java/org/neo4j/gds/beta/filter/NodesFilter.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -141,7 +141,7 @@ private static Map<NodeLabel, NodePropertyStore> filterNodeProperties(
141141

142142
private static NodePropertyStore createNodePropertyStore(
143143
GraphStore inputGraphStore,
144-
IdMapping filteredNodeMapping,
144+
NodeMapping filteredNodeMapping,
145145
NodeLabel nodeLabel,
146146
Collection<String> propertyKeys,
147147
int concurrency,
@@ -178,7 +178,7 @@ private static NodePropertyStore createNodePropertyStore(
178178

179179
builder.putNodeProperty(
180180
propertyKey,
181-
NodeProperty.of(propertyKey, propertyState, nodePropertiesBuilder.build(filteredNodeCount, filteredIdMap))
181+
NodeProperty.of(propertyKey, propertyState, nodePropertiesBuilder.build(filteredNodeCount, filteredNodeMapping))
182182
);
183183
});
184184
progressTracker.endSubTask();

0 commit comments

Comments
 (0)