Mark @Overrides.

This commit is contained in:
David Hoover
2012-05-10 21:39:19 -07:00
parent 0a03eb6849
commit be0d761aa2
2 changed files with 2 additions and 0 deletions
+1
View File
@@ -477,6 +477,7 @@ public class Matrix3 implements IMatrix3, Serializable
*
* @return a reference to the result matrix, for chaining.
*/
@Override // from IMatrix3
public Matrix3 invert (Matrix3 result) throws SingularMatrixException {
double m00 = this.m00, m01 = this.m01, m02 = this.m02;
double m10 = this.m10, m11 = this.m11, m12 = this.m12;
+1
View File
@@ -477,6 +477,7 @@ public class Matrix3 implements IMatrix3, Serializable
*
* @return a reference to the result matrix, for chaining.
*/
@Override // from IMatrix3
public Matrix3 invert (Matrix3 result) throws SingularMatrixException {
float m00 = this.m00, m01 = this.m01, m02 = this.m02;
float m10 = this.m10, m11 = this.m11, m12 = this.m12;