From ed118c0ffaec73792fcc7243e3736b9d0082e044 Mon Sep 17 00:00:00 2001 From: Elizabeth Fong Date: Wed, 2 Aug 2006 00:57:08 +0000 Subject: [PATCH] fix 1.5ism --- src/java/com/threerings/getdown/data/Application.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/java/com/threerings/getdown/data/Application.java b/src/java/com/threerings/getdown/data/Application.java index 7fbbdef..ac4dbc7 100644 --- a/src/java/com/threerings/getdown/data/Application.java +++ b/src/java/com/threerings/getdown/data/Application.java @@ -439,7 +439,7 @@ public class Application } // determine whether or not we should be using bit torrent - _useTorrent = Boolean.parseBoolean((String)cdata.get("torrent")); + _useTorrent = (cdata.get("torrent") != null); // look for a debug.txt file which causes us to run in java.exe on // Windows so that we can obtain a thread dump of the running JVM