Can't use String.replace since it's a 1.5ism.

This commit is contained in:
Mike Thomas
2006-12-05 21:38:47 +00:00
parent 93f82f372f
commit 83b5b5923c
@@ -700,7 +700,7 @@ public abstract class Getdown extends Thread
File imgpath = null;
try {
// First try for a localized image.
imgpath = _app.getLocalPath(path.replace(".", "_" + localeStr + "."));
imgpath = _app.getLocalPath(StringUtil.replace(path, ".", "_" + localeStr + "."));
return ImageIO.read(imgpath);
} catch (IOException ioe) {
// No biggie, we'll try the generic one.