You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@cordova.apache.org by fi...@apache.org on 2012/07/11 18:31:19 UTC

[2/2] js commit: Removed extra logs, dropped a TODO

Removed extra logs, dropped a TODO


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

Branch: refs/heads/master
Commit: 8963935312664377b5ae33c2db1e882e25c15541
Parents: b6cf309
Author: Fil Maj <ma...@gmail.com>
Authored: Wed Jul 11 08:58:29 2012 -0700
Committer: Fil Maj <ma...@gmail.com>
Committed: Wed Jul 11 08:58:29 2012 -0700

----------------------------------------------------------------------
 lib/common/plugin/DirectoryEntry.js |    2 +-
 lib/common/plugin/FileSystem.js     |    4 +---
 2 files changed, 2 insertions(+), 4 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-cordova-js/blob/89639353/lib/common/plugin/DirectoryEntry.js
----------------------------------------------------------------------
diff --git a/lib/common/plugin/DirectoryEntry.js b/lib/common/plugin/DirectoryEntry.js
index 9eb0838..cb82237 100644
--- a/lib/common/plugin/DirectoryEntry.js
+++ b/lib/common/plugin/DirectoryEntry.js
@@ -11,7 +11,7 @@ var utils = require('cordova/utils'),
  * {boolean} isDirectory always true (readonly)
  * {DOMString} name of the directory, excluding the path leading to it (readonly)
  * {DOMString} fullPath the absolute full path to the directory (readonly)
- * {FileSystem} filesystem on which the directory resides (readonly)
+ * TODO: implement this!!! {FileSystem} filesystem on which the directory resides (readonly)
  */
 var DirectoryEntry = function(name, fullPath) {
      DirectoryEntry.__super__.constructor.apply(this, [false, true, name, fullPath]);

http://git-wip-us.apache.org/repos/asf/incubator-cordova-js/blob/89639353/lib/common/plugin/FileSystem.js
----------------------------------------------------------------------
diff --git a/lib/common/plugin/FileSystem.js b/lib/common/plugin/FileSystem.js
index af28bc5..53636b5 100644
--- a/lib/common/plugin/FileSystem.js
+++ b/lib/common/plugin/FileSystem.js
@@ -10,10 +10,8 @@ var DirectoryEntry = require('cordova/plugin/DirectoryEntry');
 var FileSystem = function(name, root) {
     this.name = name || null;
     if (root) {
-        console.log('root.name ' + name);
-        console.log('root.root ' + root);
         this.root = new DirectoryEntry(root.name, root.fullPath);
     }
 };
 
-module.exports = FileSystem;
\ No newline at end of file
+module.exports = FileSystem;