Skip to content

Commit 011b64b

Browse files
committed
fix StackOverFlowError when calling getDouble() (#671)
1 parent 2208b39 commit 011b64b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

core/src/processing/data/Table.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3550,7 +3550,7 @@ public String getString(int row, int column) {
35503550
return null;
35513551
}
35523552
} else if (columnTypes[column] == DOUBLE) {
3553-
if (Double.isNaN(getFloat(row, column))) {
3553+
if (Double.isNaN(getDouble(row, column))) {
35543554
return null;
35553555
}
35563556
}

0 commit comments

Comments
 (0)