aboutsummaryrefslogtreecommitdiffstats
path: root/src/jogl/classes/com/jogamp/graph/curve
diff options
context:
space:
mode:
authorSven Gothel <[email protected]>2014-07-08 10:10:39 +0200
committerSven Gothel <[email protected]>2014-07-08 10:10:39 +0200
commitb5910f18f0b82a8a1f6f6252dc19971d5e487f39 (patch)
tree6dda5be680d970e8def378d97f71dea4a3f2d40f /src/jogl/classes/com/jogamp/graph/curve
parent326cd5074f14d89a2cd8a6658472784aeda11a87 (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/graph/curve')
-rw-r--r--src/jogl/classes/com/jogamp/graph/curve/OutlineShape.java5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/jogl/classes/com/jogamp/graph/curve/OutlineShape.java b/src/jogl/classes/com/jogamp/graph/curve/OutlineShape.java
index 939035c69..e7c452fb4 100644
--- a/src/jogl/classes/com/jogamp/graph/curve/OutlineShape.java
+++ b/src/jogl/classes/com/jogamp/graph/curve/OutlineShape.java
@@ -791,4 +791,9 @@ public class OutlineShape implements Comparable<OutlineShape> {
}
return true;
}
+
+ @Override
+ public final int hashCode() {
+ throw new InternalError("hashCode not designed");
+ }
}