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/05/18 00:37:07 UTC

[5/19] js commit: cleaned up some comments

cleaned up some comments


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/9bd1192d
Tree: http://git-wip-us.apache.org/repos/asf/incubator-cordova-js/tree/9bd1192d
Diff: http://git-wip-us.apache.org/repos/asf/incubator-cordova-js/diff/9bd1192d

Branch: refs/heads/playbookFile
Commit: 9bd1192d6759660c44bdd2b29cb1591190de275d
Parents: 8ee7d1e
Author: Tim Kim <ti...@nitobi.com>
Authored: Fri May 11 16:15:14 2012 -0700
Committer: Tim Kim <ti...@nitobi.com>
Committed: Fri May 11 16:15:14 2012 -0700

----------------------------------------------------------------------
 lib/common/plugin/DirectoryReader.js |    1 -
 1 files changed, 0 insertions(+), 1 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-cordova-js/blob/9bd1192d/lib/common/plugin/DirectoryReader.js
----------------------------------------------------------------------
diff --git a/lib/common/plugin/DirectoryReader.js b/lib/common/plugin/DirectoryReader.js
index 0593287..4db0600 100644
--- a/lib/common/plugin/DirectoryReader.js
+++ b/lib/common/plugin/DirectoryReader.js
@@ -36,7 +36,6 @@ DirectoryReader.prototype.readEntries = function(successCallback, errorCallback)
     var fail = typeof errorCallback !== 'function' ? null : function(code) {
         errorCallback(new FileError(code));
     };
-    console.log('directory entry');
     exec(win, fail, "File", "readEntries", [this.path]);
 };