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/06/07 22:40:44 UTC

[32/48] 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/6e4c99bd
Tree: http://git-wip-us.apache.org/repos/asf/incubator-cordova-js/tree/6e4c99bd
Diff: http://git-wip-us.apache.org/repos/asf/incubator-cordova-js/diff/6e4c99bd

Branch: refs/heads/master
Commit: 6e4c99bd40aae99f2fba93dfb764ff0dc464c990
Parents: 905484b
Author: Tim Kim <ti...@nitobi.com>
Authored: Fri May 11 16:15:14 2012 -0700
Committer: Tim Kim <ti...@nitobi.com>
Committed: Thu Jun 7 13:40:22 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/6e4c99bd/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]);
 };