Browse Source

DesktopAssetManager: remove weird logging in loadTexture

shadowislord 10 years ago
parent
commit
4b079ea480
1 changed files with 1 additions and 3 deletions
  1. 1 3
      jme3-core/src/main/java/com/jme3/asset/DesktopAssetManager.java

+ 1 - 3
jme3-core/src/main/java/com/jme3/asset/DesktopAssetManager.java

@@ -353,9 +353,7 @@ public class DesktopAssetManager implements AssetManager {
     public Texture loadTexture(String name){
     public Texture loadTexture(String name){
         TextureKey key = new TextureKey(name, true);
         TextureKey key = new TextureKey(name, true);
         key.setGenerateMips(true);
         key.setGenerateMips(true);
-        Texture tex = loadTexture(key);
-        logger.log(Level.FINE, "{0} - {1}", new Object[]{tex, tex.getMinFilter()});
-        return tex;
+        return loadTexture(key);
     }
     }
 
 
     public AudioData loadAudio(AudioKey key){
     public AudioData loadAudio(AudioKey key){