Skip to content

Commit 644d6ff

Browse files
committed
fix broken config sync logic
1 parent 85230d3 commit 644d6ff

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/main/java/com/falsepattern/lib/internal/impl/config/fields/DoubleListConfigField.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@ protected void transmitElements(DataOutput output, double[] arr) throws IOExcept
8383
@Override
8484
protected void receiveElements(DataInput input, double[] arr) throws IOException {
8585
for (int i = 0; i < arr.length; i++) {
86-
arr[i] = input.readInt();
86+
arr[i] = input.readDouble();
8787
}
8888
}
8989

0 commit comments

Comments
 (0)