Skip to content

Commit

Permalink
fix StackOverFlowError when calling getDouble() (#671)
Browse files Browse the repository at this point in the history
  • Loading branch information
benfry committed Feb 20, 2023
1 parent 2208b39 commit 011b64b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion core/src/processing/data/Table.java
Original file line number Diff line number Diff line change
Expand Up @@ -3550,7 +3550,7 @@ public String getString(int row, int column) {
return null;
}
} else if (columnTypes[column] == DOUBLE) {
if (Double.isNaN(getFloat(row, column))) {
if (Double.isNaN(getDouble(row, column))) {
return null;
}
}
Expand Down

0 comments on commit 011b64b

Please sign in to comment.