Skip to content

Commit 1188567

Browse files
committed
Remove some unnecessary suppressions
1 parent 02a5eed commit 1188567

File tree

4 files changed

+0
-5
lines changed

4 files changed

+0
-5
lines changed

algo/src/main/java/org/neo4j/gds/k1coloring/K1ColoringResult.java

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,6 @@
2323
import org.neo4j.gds.collections.ha.HugeLongArray;
2424

2525

26-
@SuppressWarnings("immutables:subtype")
2726
public record K1ColoringResult(HugeLongArray colors,
2827
long ranIterations,
2928
boolean didConverge) {
@@ -41,4 +40,3 @@ public BitSet usedColors() {
4140
}
4241

4342
}
44-

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

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,6 @@
2424

2525
import java.util.function.LongUnaryOperator;
2626

27-
@SuppressWarnings("immutables:subtype")
2827
public record LeidenResult(
2928
HugeLongArray communities,
3029
int ranLevels,

algo/src/main/java/org/neo4j/gds/louvain/LouvainResult.java

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,6 @@
2222
import org.jetbrains.annotations.Nullable;
2323
import org.neo4j.gds.collections.ha.HugeLongArray;
2424

25-
@SuppressWarnings("immutables:subtype")
2625
public record LouvainResult(
2726
HugeLongArray communities,
2827
int ranLevels,

algo/src/main/java/org/neo4j/gds/steiner/SteinerTreeResult.java

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,6 @@
2222
import org.neo4j.gds.collections.ha.HugeDoubleArray;
2323
import org.neo4j.gds.collections.ha.HugeLongArray;
2424

25-
@SuppressWarnings("immutables:subtype")
2625
public record SteinerTreeResult(
2726
HugeLongArray parentArray,
2827
HugeDoubleArray relationshipToParentCost,

0 commit comments

Comments
 (0)