소스 검색

fix typo mistake i made by accident

Ryan McDonough 5 달 전
부모
커밋
576b238265
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  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)) {