- fix warning for ImageLoader in AssetPack support

This commit is contained in:
Normen Hansen 2015-01-28 16:50:38 +01:00
parent d4ff1e2e30
commit 011b1ce942

View File

@ -63,7 +63,7 @@ public class AssetPackBrowserItem extends AbstractNode {
private void setImage() { private void setImage() {
try { try {
String add = item.getAttribute("type"); String add = item.getAttribute("type");
icon = ImageUtilities.loadImage("/com/jme3/gde/assetpack/icons/" + add + ".gif"); icon = ImageUtilities.loadImage("com/jme3/gde/assetpack/icons/" + add + ".gif");
} catch (Exception e) { } catch (Exception e) {
} }
} }