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
This commit is contained in:
Charlie Groves
2008-04-22 18:34:34 +00:00
parent 65a579c583
commit 0b5b4f41e5
@@ -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;