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

[25/50] [abbrv] 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/3f619780
Tree: http://git-wip-us.apache.org/repos/asf/incubator-cordova-js/tree/3f619780
Diff: http://git-wip-us.apache.org/repos/asf/incubator-cordova-js/diff/3f619780

Branch: refs/heads/master
Commit: 3f6197807b82016804f1a1edcd334b797a2c5a70
Parents: 879a4d8
Author: Josh Soref <js...@rim.com>
Authored: Tue Aug 14 17:25:42 2012 -0400
Committer: Anis Kadri <an...@gmail.com>
Committed: Fri Aug 24 13:50:01 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/3f619780/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();