Sfoglia il codice sorgente

fixes issue https://github.com/jMonkeyEngine/jmonkeyengine/issues/506 : Material->toString() does not prevent/check for possible NPEs

jjYBdx4IL 9 anni fa
parent
commit
cfd491e270
1 ha cambiato i file con 2 aggiunte e 2 eliminazioni
  1. 2 2
      jme3-core/src/main/java/com/jme3/material/Material.java

+ 2 - 2
jme3-core/src/main/java/com/jme3/material/Material.java

@@ -994,8 +994,8 @@ public class Material implements CloneableSmartAsset, Cloneable, Savable {
     @Override
     public String toString() {
         return "Material[name=" + name + 
-                ", def=" + def.getName() + 
-                ", tech=" + technique.getDef().getName() + 
+                ", def=" + (def != null ? def.getName() : null) + 
+                ", tech=" + (technique != null && technique.getDef() != null ? technique.getDef().getName() : null) + 
                 "]";
     }