From d2a7d18067242e58d866e83e63ae2af1c6cff1b6 Mon Sep 17 00:00:00 2001 From: Joe Bowser Date: Fri, 14 Jun 2013 15:30:24 -0700 Subject: [PATCH] Fixed bad comment, it's all dying at the same time --- framework/src/org/apache/cordova/CordovaActivity.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/framework/src/org/apache/cordova/CordovaActivity.java b/framework/src/org/apache/cordova/CordovaActivity.java index c9580fbd..1b7ff5a4 100755 --- a/framework/src/org/apache/cordova/CordovaActivity.java +++ b/framework/src/org/apache/cordova/CordovaActivity.java @@ -606,7 +606,7 @@ public class CordovaActivity extends Activity implements CordovaInterface { * @param value */ public void setIntegerProperty(String name, int value) { - Log.d(TAG, "Setting integer properties in CordovaActivity will be deprecated in 3.1 on August 2013, please use config.xml"); + Log.d(TAG, "Setting integer properties in CordovaActivity will be deprecated in 3.0 on July 2013, please use config.xml"); this.getIntent().putExtra(name, value); }