From 83b5b5923c50b973f29fd93783413084f66aef25 Mon Sep 17 00:00:00 2001 From: Mike Thomas Date: Tue, 5 Dec 2006 21:38:47 +0000 Subject: [PATCH] Can't use String.replace since it's a 1.5ism. --- src/java/com/threerings/getdown/launcher/Getdown.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/java/com/threerings/getdown/launcher/Getdown.java b/src/java/com/threerings/getdown/launcher/Getdown.java index 462b497..f1208b3 100644 --- a/src/java/com/threerings/getdown/launcher/Getdown.java +++ b/src/java/com/threerings/getdown/launcher/Getdown.java @@ -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.