Rename parameters to reflect reality.

git-svn-id: svn+ssh://src.earth.threerings.net/nenya/trunk@324 ed5b42cb-e716-0410-a449-f6a68f950b19
This commit is contained in:
Mike Thomas
2007-10-31 23:21:59 +00:00
parent 9d8d509fc7
commit 5ab6e41f2f
2 changed files with 3 additions and 3 deletions
@@ -93,10 +93,10 @@ public class FileResourceBundle extends ResourceBundle
} }
@Override // from ResourceBundle @Override // from ResourceBundle
public BufferedImage getImageResource (String path, boolean forceFastIO) public BufferedImage getImageResource (String path, boolean useFastIO)
throws IOException throws IOException
{ {
return ResourceManager.loadImage(getResourceFile(path), forceFastIO); return ResourceManager.loadImage(getResourceFile(path), useFastIO);
} }
/** /**
@@ -54,6 +54,6 @@ public abstract class ResourceBundle
* Decodes and returns the specified image resource. Returns null if no resource exists at the * Decodes and returns the specified image resource. Returns null if no resource exists at the
* specified path. * specified path.
*/ */
public abstract BufferedImage getImageResource (String path, boolean forceFastIO) public abstract BufferedImage getImageResource (String path, boolean useFastIO)
throws IOException; throws IOException;
} }