Explorar el Código

fix typo mistake i made by accident

Ryan McDonough hace 5 meses
padre
commit
576b238265
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  1. 1 1
      jme3-core/src/main/java/com/jme3/texture/TextureArray.java

+ 1 - 1
jme3-core/src/main/java/com/jme3/texture/TextureArray.java

@@ -175,7 +175,7 @@ public class TextureArray extends Texture {
 
     @Override
     public boolean equals(Object other) {
-        if (this == obj) {
+        if (this == other) {
             return true; 
         }
         if (!(other instanceof TextureArray)) {