From a6faa68a5c99f446515bfcc77db3a8677aef60d0 Mon Sep 17 00:00:00 2001 From: brianleroux Date: Wed, 1 Sep 2010 11:55:18 -0700 Subject: [PATCH] undefined is not falsy in java land apparently --- framework/src/com/phonegap/DroidGap.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/framework/src/com/phonegap/DroidGap.java b/framework/src/com/phonegap/DroidGap.java index 97eb6c85..8a62e28a 100755 --- a/framework/src/com/phonegap/DroidGap.java +++ b/framework/src/com/phonegap/DroidGap.java @@ -84,7 +84,7 @@ public class DroidGap extends Activity { private static final String LOG_TAG = "DroidGap"; protected WebView appView; protected ImageView splashScreen; - protected Boolean backdoor; + protected Boolean backdoor = false; private LinearLayout root; private Device gap;