fix NotEqualsStatement

This commit is contained in:
dfsek
2022-05-25 23:01:14 -07:00
parent bce25b8702
commit 63bfa6bf14

View File

@@ -31,7 +31,7 @@ public class NotEqualsStatement extends BinaryOperation<Object, Boolean> {
return FastMath.abs(l.doubleValue() - r.doubleValue()) > EPSILON;
}
return !left.equals(rightUnwrapped);
return !leftUnwrapped.equals(rightUnwrapped);
}