mirror of
https://github.com/PolyhedralDev/Terra.git
synced 2026-02-16 10:30:42 +00:00
fix NotEqualsStatement
This commit is contained in:
@@ -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);
|
||||
}
|
||||
|
||||
|
||||
|
||||
Reference in New Issue
Block a user