From b677ba4aec662cd6644ad1631cc9e4d87ecfd410 Mon Sep 17 00:00:00 2001 From: Mike Thomas Date: Wed, 4 Mar 2009 19:11:53 +0000 Subject: [PATCH] Remove 1.5ism Boolean.parseBoolean(). --- .../com/threerings/getdown/launcher/GetdownAppletConfig.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/java/com/threerings/getdown/launcher/GetdownAppletConfig.java b/src/java/com/threerings/getdown/launcher/GetdownAppletConfig.java index 2c5d3f3..be32d20 100644 --- a/src/java/com/threerings/getdown/launcher/GetdownAppletConfig.java +++ b/src/java/com/threerings/getdown/launcher/GetdownAppletConfig.java @@ -164,7 +164,7 @@ public class GetdownAppletConfig } String direct = getParameter(DIRECT, "false"); - invokeDirect = Boolean.parseBoolean(direct); + invokeDirect = Boolean.valueOf(direct); String redirectURL = getParameter(REDIRECT_ON_FINISH); if (redirectURL != null) {