diff options
author | Harvey Harrison <[email protected]> | 2013-07-10 09:08:10 -0700 |
---|---|---|
committer | Harvey Harrison <[email protected]> | 2013-07-10 09:08:10 -0700 |
commit | ae0eabff70c9b63eac241b9f30bd389356cfb220 (patch) | |
tree | 2eec48b493a6426ab807267b6738b18cfa422bc0 /src/javax/vecmath/Tuple2d.java | |
parent | e6c6d02057eaf3ce38fb0d99ec614d2e38788a6b (diff) |
vecmath: add @Override annotations to overridden methods
Signed-off-by: Harvey Harrison <[email protected]>
Diffstat (limited to 'src/javax/vecmath/Tuple2d.java')
-rw-r--r-- | src/javax/vecmath/Tuple2d.java | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/javax/vecmath/Tuple2d.java b/src/javax/vecmath/Tuple2d.java index e3c3dde..2b60b2a 100644 --- a/src/javax/vecmath/Tuple2d.java +++ b/src/javax/vecmath/Tuple2d.java @@ -287,6 +287,7 @@ public abstract class Tuple2d implements java.io.Serializable, Cloneable { * same hash value, although this is not likely. * @return the integer hash code value */ + @Override public int hashCode() { long bits = 1L; bits = 31L * bits + VecMathUtil.doubleToLongBits(x); @@ -317,6 +318,7 @@ public abstract class Tuple2d implements java.io.Serializable, Cloneable { * @param t1 the object with which the comparison is made * @return true or false */ + @Override public boolean equals(Object t1) { try { @@ -357,6 +359,7 @@ public abstract class Tuple2d implements java.io.Serializable, Cloneable { * The form is (x,y). * @return the String representation */ + @Override public String toString() { return("(" + this.x + ", " + this.y + ")"); @@ -539,6 +542,7 @@ public abstract class Tuple2d implements java.io.Serializable, Cloneable { * @see java.lang.Cloneable * @since vecmath 1.3 */ + @Override public Object clone() { // Since there are no arrays we can just use Object.clone() try { |