- make UrlLocator not print warning when asset can not be found (FileNotFoundException)

git-svn-id: https://jmonkeyengine.googlecode.com/svn/trunk@8724 75d07b2b-3a1a-0410-a2c5-0572b91ccdca
This commit is contained in:
nor..67 2011-11-19 13:11:10 +00:00
parent 7927ad4bbf
commit 28ad6d72eb

View File

@ -33,6 +33,7 @@
package com.jme3.asset.plugins; package com.jme3.asset.plugins;
import com.jme3.asset.*; import com.jme3.asset.*;
import java.io.FileNotFoundException;
import java.io.IOException; import java.io.IOException;
import java.net.MalformedURLException; import java.net.MalformedURLException;
import java.net.URL; import java.net.URL;
@ -68,6 +69,8 @@ public class UrlLocator implements AssetLocator {
} }
URL url = new URL(root.toExternalForm() + name); URL url = new URL(root.toExternalForm() + name);
return UrlAssetInfo.create(manager, key, url); return UrlAssetInfo.create(manager, key, url);
}catch (FileNotFoundException e){
return null;
}catch (IOException ex){ }catch (IOException ex){
logger.log(Level.WARNING, "Error while locating " + name, ex); logger.log(Level.WARNING, "Error while locating " + name, ex);
return null; return null;