From b5910f18f0b82a8a1f6f6252dc19971d5e487f39 Mon Sep 17 00:00:00 2001 From: Sven Gothel Date: Tue, 8 Jul 2014 10:10:39 +0200 Subject: Findbugs.normal: Adding safeguard hashCode() implementation throwing InternalError("hashCode not designed") As long we don't use Object.hashCode() to idenitify the memory address, we can safeguard the code. --- src/jogl/classes/com/jogamp/opengl/math/geom/AABBox.java | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'src/jogl/classes/com/jogamp/opengl/math/geom/AABBox.java') diff --git a/src/jogl/classes/com/jogamp/opengl/math/geom/AABBox.java b/src/jogl/classes/com/jogamp/opengl/math/geom/AABBox.java index e454c036a..4caff95ea 100644 --- a/src/jogl/classes/com/jogamp/opengl/math/geom/AABBox.java +++ b/src/jogl/classes/com/jogamp/opengl/math/geom/AABBox.java @@ -673,6 +673,10 @@ public class AABBox { return VectorUtil.isVec2Equal(low, 0, other.low, 0, FloatUtil.EPSILON) && VectorUtil.isVec3Equal(high, 0, other.high, 0, FloatUtil.EPSILON) ; } + @Override + public final int hashCode() { + throw new InternalError("hashCode not designed"); + } /** * Assume this bounding box as being in object space and -- cgit v1.2.3