From 6944f479d14618dbba0394302a468cdcd7ee554b Mon Sep 17 00:00:00 2001 From: Michael Bayne Date: Fri, 10 Dec 2004 21:36:03 +0000 Subject: [PATCH] Removed inadvertently checked in test logging. git-svn-id: svn+ssh://src.earth.threerings.net/narya/trunk@3271 542714f4-19e9-0310-aa3c-eee0fc999fb1 --- src/java/com/threerings/resource/ResourceManager.java | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/java/com/threerings/resource/ResourceManager.java b/src/java/com/threerings/resource/ResourceManager.java index fcce58d39..8045c8e3b 100644 --- a/src/java/com/threerings/resource/ResourceManager.java +++ b/src/java/com/threerings/resource/ResourceManager.java @@ -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));