From 011b64b3bfb8929d41e9cbd36eb61252857ceec8 Mon Sep 17 00:00:00 2001 From: Ben Fry Date: Mon, 20 Feb 2023 05:02:49 -0500 Subject: [PATCH] fix StackOverFlowError when calling getDouble() (#671) --- core/src/processing/data/Table.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/src/processing/data/Table.java b/core/src/processing/data/Table.java index e9bf45651..ca04dd6ab 100644 --- a/core/src/processing/data/Table.java +++ b/core/src/processing/data/Table.java @@ -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; } }