Formatting tweak.

TODO: I should probably add a third type of resource bundle, CLASSPATH_TYPE, that just searches the classpath for resource bundles.

git-svn-id: svn+ssh://src.earth.threerings.net/nenya/trunk@762 ed5b42cb-e716-0410-a449-f6a68f950b19
This commit is contained in:
Matt Jensen
2009-01-22 02:16:36 +00:00
parent aacdc439a5
commit 648ad3e0fc
@@ -842,8 +842,8 @@ public class ResourceManager
/**
* Creates an appropriate bundle for fetching resources from files.
*/
protected FileResourceBundle createFileResourceBundle(
File source, boolean delay, boolean unpack)
protected FileResourceBundle createFileResourceBundle (File source, boolean delay,
boolean unpack)
{
return new FileResourceBundle(source, delay, unpack);
}
@@ -851,8 +851,8 @@ public class ResourceManager
/**
* Creates an appropriate bundle for fetching resources from the network.
*/
protected ResourceBundle createNetworkResourceBundle(
String root, String path, HashSet<String> rsrcList)
protected ResourceBundle createNetworkResourceBundle (String root, String path,
HashSet<String> rsrcList)
{
return new NetworkResourceBundle(root, path, rsrcList);
}