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:
@@ -842,8 +842,8 @@ public class ResourceManager
|
|||||||
/**
|
/**
|
||||||
* Creates an appropriate bundle for fetching resources from files.
|
* Creates an appropriate bundle for fetching resources from files.
|
||||||
*/
|
*/
|
||||||
protected FileResourceBundle createFileResourceBundle(
|
protected FileResourceBundle createFileResourceBundle (File source, boolean delay,
|
||||||
File source, boolean delay, boolean unpack)
|
boolean unpack)
|
||||||
{
|
{
|
||||||
return new FileResourceBundle(source, delay, unpack);
|
return new FileResourceBundle(source, delay, unpack);
|
||||||
}
|
}
|
||||||
@@ -851,8 +851,8 @@ public class ResourceManager
|
|||||||
/**
|
/**
|
||||||
* Creates an appropriate bundle for fetching resources from the network.
|
* Creates an appropriate bundle for fetching resources from the network.
|
||||||
*/
|
*/
|
||||||
protected ResourceBundle createNetworkResourceBundle(
|
protected ResourceBundle createNetworkResourceBundle (String root, String path,
|
||||||
String root, String path, HashSet<String> rsrcList)
|
HashSet<String> rsrcList)
|
||||||
{
|
{
|
||||||
return new NetworkResourceBundle(root, path, rsrcList);
|
return new NetworkResourceBundle(root, path, rsrcList);
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user