From 172157101252eedba051f85054e728a23230b163 Mon Sep 17 00:00:00 2001 From: Andrew Grieve Date: Tue, 10 Feb 2015 22:06:07 -0500 Subject: [PATCH] Delete unused field in CordovaActivity --- framework/src/org/apache/cordova/CordovaActivity.java | 7 ------- 1 file changed, 7 deletions(-) diff --git a/framework/src/org/apache/cordova/CordovaActivity.java b/framework/src/org/apache/cordova/CordovaActivity.java index 72a7e1f4..6874f5b2 100755 --- a/framework/src/org/apache/cordova/CordovaActivity.java +++ b/framework/src/org/apache/cordova/CordovaActivity.java @@ -87,13 +87,6 @@ public class CordovaActivity extends Activity { private static int ACTIVITY_EXITING = 2; private int activityState = 0; // 0=starting, 1=running (after 1st resume), 2=shutting down - /* - * The variables below are used to cache some of the activity properties. - */ - - // LoadUrl timeout value in msec (default of 20 sec) - protected int loadUrlTimeoutValue = 20000; - // Keep app running when pause is received. (default = true) // If true, then the JavaScript and native code continue to run in the background // when another application (activity) is started.