From a42103651c35a5d4ecc7b52bcfee4494d33b8020 Mon Sep 17 00:00:00 2001 From: Stephen Gold Date: Sat, 18 Apr 2020 14:30:22 -0700 Subject: [PATCH] correct the javadoc of Matrix4f.set(float[][]) -- missing "not"! --- jme3-core/src/main/java/com/jme3/math/Matrix4f.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/jme3-core/src/main/java/com/jme3/math/Matrix4f.java b/jme3-core/src/main/java/com/jme3/math/Matrix4f.java index 54c948222..685244588 100644 --- a/jme3-core/src/main/java/com/jme3/math/Matrix4f.java +++ b/jme3-core/src/main/java/com/jme3/math/Matrix4f.java @@ -581,7 +581,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) {