فهرست منبع

Merge pull request #799 from jmecn/master

Fix typo in logger of WeakRefCloneAssetCache
empirephoenix 7 سال پیش
والد
کامیت
76028201bf
1فایلهای تغییر یافته به همراه1 افزوده شده و 2 حذف شده
  1. 1 2
      jme3-core/src/main/java/com/jme3/asset/cache/WeakRefCloneAssetCache.java

+ 1 - 2
jme3-core/src/main/java/com/jme3/asset/cache/WeakRefCloneAssetCache.java

@@ -112,11 +112,10 @@ public class WeakRefCloneAssetCache implements AssetCache {
             // might not even have this asset anymore, it is OK.
             if (smartCache.remove(key) != null){
                 removedAssets ++;
-                //System.out.println("WeakRefAssetCache: The asset " + ref.assetKey + " was purged from the cache");
             }
         }
         if (removedAssets >= 1) {
-            logger.log(Level.FINE, "WeakRefAssetCache: {0} assets were purged from the cache.", removedAssets);
+            logger.log(Level.FINE, "WeakRefCloneAssetCache: {0} assets were purged from the cache.", removedAssets);
         }
     }