mirror of
https://github.com/processing/processing4.git
synced 2026-06-16 04:26:26 +02:00
fix StackOverFlowError when calling getDouble() (#671)
This commit is contained in:
@@ -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;
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user