Removed inadvertently checked in test logging.

git-svn-id: svn+ssh://src.earth.threerings.net/narya/trunk@3271 542714f4-19e9-0310-aa3c-eee0fc999fb1
This commit is contained in:
Michael Bayne
2004-12-10 21:36:03 +00:00
parent aeff9e61cf
commit 6944f479d1
@@ -379,7 +379,6 @@ public class ResourceManager
// if we didn't find anything, try the classloader
String rpath = PathUtil.appendPath(_rootPath, path);
Log.info("looing for resource in " + _loader);
in = _loader.getResourceAsStream(rpath);
if (in != null) {
return in;
@@ -414,7 +413,6 @@ public class ResourceManager
// if we didn't find anything, try the classloader
String rpath = PathUtil.appendPath(_rootPath, path);
Log.info("looing for resource in " + _loader);
InputStream in = _loader.getResourceAsStream(rpath);
if (in != null) {
return new MemoryCacheImageInputStream(new BufferedInputStream(in));