Skip to content

Commit 2ccc788

Browse files
Spotless & checkstyle
1 parent 9f82bc0 commit 2ccc788

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

procedures/facade-api/miscellaneous-facade-api/src/main/java/org/neo4j/gds/procedures/algorithms/miscellaneous/ScalePropertiesStreamResult.java

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -23,10 +23,9 @@
2323
import java.util.List;
2424
import java.util.stream.Collectors;
2525

26-
public record ScalePropertiesStreamResult( long nodeId, List<Double> scaledProperty){
27-
28-
public static ScalePropertiesStreamResult create (long nodeId, double[] scaledProperty) {
26+
public record ScalePropertiesStreamResult(long nodeId, List<Double> scaledProperty){
2927

28+
public static ScalePropertiesStreamResult create(long nodeId, double[] scaledProperty) {
3029
var scaledPropertyList = Arrays.stream(scaledProperty).boxed().collect(Collectors.toList());
3130
return new ScalePropertiesStreamResult(nodeId,scaledPropertyList);
3231
}

0 commit comments

Comments
 (0)