From 0b5b4f41e5012b52c4852a2c7485b93ae808fef0 Mon Sep 17 00:00:00 2001 From: Charlie Groves Date: Tue, 22 Apr 2008 18:34:34 +0000 Subject: [PATCH] Go ahead and add a toString for NetworkResourceBundle in the style of FileResourceBundle git-svn-id: svn+ssh://src.earth.threerings.net/nenya/trunk@473 ed5b42cb-e716-0410-a449-f6a68f950b19 --- .../com/threerings/resource/NetworkResourceBundle.java | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/src/java/com/threerings/resource/NetworkResourceBundle.java b/src/java/com/threerings/resource/NetworkResourceBundle.java index 42171db3..2cdf7d22 100644 --- a/src/java/com/threerings/resource/NetworkResourceBundle.java +++ b/src/java/com/threerings/resource/NetworkResourceBundle.java @@ -86,6 +86,15 @@ public class NetworkResourceBundle extends ResourceBundle return ResourceManager.loadImage(in); } + /** + * Returns a string representation of this resource bundle. + */ + @Override + public String toString () + { + return "[url=" + _bundleURL + "]"; + } + /** Our identifier for this bundle. */ protected String _ident;