Skip to content

Commit 8b780ff

Browse files
vnickolovFlorentinDIoannisPanagiotas
committed
Address review comments
Co-authored-by: Florentin Dörre <florentin.dorre@neotechnology.com> Co-authored-by: Ioannis Panagiotas <ioannis.panagiotas@neotechnology.com>
1 parent 302c095 commit 8b780ff

File tree

4 files changed

+0
-12
lines changed

4 files changed

+0
-12
lines changed

algo/src/main/java/org/neo4j/gds/leiden/LeidenMutateConfig.java

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -20,13 +20,10 @@
2020
package org.neo4j.gds.leiden;
2121

2222
import org.neo4j.gds.annotation.Configuration;
23-
import org.neo4j.gds.annotation.ValueClass;
2423
import org.neo4j.gds.config.MutatePropertyConfig;
2524
import org.neo4j.gds.core.CypherMapWrapper;
2625

27-
@ValueClass
2826
@Configuration
29-
@SuppressWarnings("immutables:subtype")
3027
public interface LeidenMutateConfig extends LeidenBaseConfig, MutatePropertyConfig {
3128

3229
static LeidenMutateConfig of(CypherMapWrapper userInput) {

algo/src/main/java/org/neo4j/gds/leiden/LeidenStatsConfig.java

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -21,12 +21,9 @@
2121

2222

2323
import org.neo4j.gds.annotation.Configuration;
24-
import org.neo4j.gds.annotation.ValueClass;
2524
import org.neo4j.gds.core.CypherMapWrapper;
2625

27-
@ValueClass
2826
@Configuration
29-
@SuppressWarnings("immutables:subtype")
3027
public interface LeidenStatsConfig extends LeidenBaseConfig {
3128
static LeidenStatsConfig of(CypherMapWrapper userInput) {
3229
return new LeidenStatsConfigImpl(userInput);

algo/src/main/java/org/neo4j/gds/leiden/LeidenStreamConfig.java

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -21,12 +21,9 @@
2121

2222

2323
import org.neo4j.gds.annotation.Configuration;
24-
import org.neo4j.gds.annotation.ValueClass;
2524
import org.neo4j.gds.core.CypherMapWrapper;
2625

27-
@ValueClass
2826
@Configuration
29-
@SuppressWarnings("immutables:subtype")
3027
public interface LeidenStreamConfig extends LeidenBaseConfig {
3128
static LeidenStreamConfig of(CypherMapWrapper userInput) {
3229
return new LeidenStreamConfigImpl(userInput);

proc/community/src/main/java/org/neo4j/gds/leiden/LeidenMutateSpec.java

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -77,9 +77,6 @@ private AbstractResultBuilder<MutateResult> resultBuilder(
7777
.withLevels(leidenResult.ranLevels())
7878
.withDidConverge(leidenResult.didConverge())
7979
.withCommunityFunction(leidenResult.communitiesFunction())
80-
.withPreProcessingMillis(computationResult.preProcessingMillis())
81-
.withComputeMillis(computationResult.computeMillis())
82-
.withNodeCount(computationResult.graph().nodeCount())
8380
.withConfig(computationResult.config());
8481
}
8582
}

0 commit comments

Comments
 (0)