We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 735bfa6 commit 02b8ddfCopy full SHA for 02b8ddf
core/src/processing/data/Table.java
@@ -4819,7 +4819,7 @@ protected float getMaxFloat() {
4819
for (int row = 0; row < getRowCount(); row++) {
4820
for (int col = 0; col < getColumnCount(); col++) {
4821
float value = getFloat(row, col);
4822
- if (!Float.isNaN(value)) { // TODO no, this should be comparing to the missing value
+ if (Float.compare(value, missingFloat) != 0) { //value now compares to missingFloat variable
4823
if (!found) {
4824
max = value;
4825
found = true;
0 commit comments