You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@cordova.apache.org by ti...@apache.org on 2012/08/24 03:10:41 UTC

[23/23] js commit: making the cache clear failure message something closer to English

making the cache clear failure message something closer to English


Project: http://git-wip-us.apache.org/repos/asf/incubator-cordova-js/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-cordova-js/commit/1f2179e0
Tree: http://git-wip-us.apache.org/repos/asf/incubator-cordova-js/tree/1f2179e0
Diff: http://git-wip-us.apache.org/repos/asf/incubator-cordova-js/diff/1f2179e0

Branch: refs/heads/master
Commit: 1f2179e07bd98fbd6d6bac17b2e8f9f4e47ed873
Parents: 6488209
Author: Josh Soref <js...@rim.com>
Authored: Tue Aug 14 17:25:42 2012 -0400
Committer: Tim Kim <ti...@nitobi.com>
Committed: Thu Aug 23 17:56:11 2012 -0700

----------------------------------------------------------------------
 lib/webworks/java/plugin/java/app.js |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-cordova-js/blob/1f2179e0/lib/webworks/java/plugin/java/app.js
----------------------------------------------------------------------
diff --git a/lib/webworks/java/plugin/java/app.js b/lib/webworks/java/plugin/java/app.js
index a046013..5279ca1 100644
--- a/lib/webworks/java/plugin/java/app.js
+++ b/lib/webworks/java/plugin/java/app.js
@@ -7,7 +7,7 @@ module.exports = {
    */
   clearCache:function() {
       if (typeof blackberry.widgetcache === "undefined" || blackberry.widgetcache === null) {
-          console.log("blackberry.widgetcache permission not found. Cache clear denied.");
+          console.log("blackberry.widgetcache permission not found. Cache clear request denied.");
           return;
       }
       blackberry.widgetcache.clearAll();