Преглед изворни кода

correct the javadoc of Matrix4f.set(float[][]) -- missing "not"!

Stephen Gold пре 5 година
родитељ
комит
1fa283f06a
1 измењених фајлова са 1 додато и 1 уклоњено
  1. 1 1
      jme3-core/src/main/java/com/jme3/math/Matrix4f.java

+ 1 - 1
jme3-core/src/main/java/com/jme3/math/Matrix4f.java

@@ -516,7 +516,7 @@ public final class Matrix4f implements Savable, Cloneable, java.io.Serializable
      * @param matrix
      *            the matrix to set the value to.
      * @throws IllegalArgumentException
-     *             if the array is 4x4
+     *            if the array isn't 4x4
      */
     public void set(float[][] matrix) {
         if (matrix.length != 4 || matrix[0].length != 4) {