fix StackOverFlowError when calling getDouble() (#671)

This commit is contained in:
Ben Fry
2023-02-20 05:02:49 -05:00
parent 2208b390c2
commit 011b64b3bf
+1 -1
View File
@@ -3550,7 +3550,7 @@ public class Table {
return null;
}
} else if (columnTypes[column] == DOUBLE) {
if (Double.isNaN(getFloat(row, column))) {
if (Double.isNaN(getDouble(row, column))) {
return null;
}
}