Skip to content

Commit

Permalink
Removed extra logs, dropped a TODO
Browse files Browse the repository at this point in the history
  • Loading branch information
filmaj committed Jul 11, 2012
1 parent b6cf309 commit 8963935
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 4 deletions.
2 changes: 1 addition & 1 deletion lib/common/plugin/DirectoryEntry.js
Original file line number Diff line number Diff line change
Expand Up @@ -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]);
Expand Down
4 changes: 1 addition & 3 deletions lib/common/plugin/FileSystem.js
Original file line number Diff line number Diff line change
Expand Up @@ -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;
module.exports = FileSystem;

0 comments on commit 8963935

Please sign in to comment.