diff options
author | Sven Gothel <[email protected]> | 2014-07-08 10:10:39 +0200 |
---|---|---|
committer | Sven Gothel <[email protected]> | 2014-07-08 10:10:39 +0200 |
commit | b5910f18f0b82a8a1f6f6252dc19971d5e487f39 (patch) | |
tree | 6dda5be680d970e8def378d97f71dea4a3f2d40f /src/jogl/classes/com/jogamp/opengl/math | |
parent | 326cd5074f14d89a2cd8a6658472784aeda11a87 (diff) |
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.
Diffstat (limited to 'src/jogl/classes/com/jogamp/opengl/math')
-rw-r--r-- | src/jogl/classes/com/jogamp/opengl/math/Quaternion.java | 4 | ||||
-rw-r--r-- | src/jogl/classes/com/jogamp/opengl/math/geom/AABBox.java | 4 |
2 files changed, 8 insertions, 0 deletions
diff --git a/src/jogl/classes/com/jogamp/opengl/math/Quaternion.java b/src/jogl/classes/com/jogamp/opengl/math/Quaternion.java index 5e0784022..430450767 100644 --- a/src/jogl/classes/com/jogamp/opengl/math/Quaternion.java +++ b/src/jogl/classes/com/jogamp/opengl/math/Quaternion.java @@ -1198,6 +1198,10 @@ public class Quaternion { Math.abs(z - comp.getZ()) <= ALLOWED_DEVIANCE && Math.abs(w - comp.getW()) <= ALLOWED_DEVIANCE; } + @Override + public final int hashCode() { + throw new InternalError("hashCode not designed"); + } public String toString() { return "Quaternion[x "+x+", y "+y+", z "+z+", w "+w+"]"; 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 |