You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The line below is comparing two Integer objects. This can lead to bugs, so either use .equals() or do something along the lines of if (dimensions.get(i).intValue() != other.dimensions.get(i)) to force the comparison of unboxed primitives (the JVM will unbox other.dimensions.get(i)).
The line below is comparing two Integer objects. This can lead to bugs, so either use
.equals()
or do something along the lines ofif (dimensions.get(i).intValue() != other.dimensions.get(i))
to force the comparison of unboxed primitives (the JVM will unboxother.dimensions.get(i)
).macrobase/contrib/src/main/java/macrobase/analysis/contextualoutlier/LatticeNode.java
Line 69 in aa19729
The text was updated successfully, but these errors were encountered: