Commit ae79ff3f authored by ioedeveloper's avatar ioedeveloper

Removed unnecessary comments

parent 30a7e8fc
...@@ -288,7 +288,6 @@ function fileExplorer (localRegistry, files, menuItems) { ...@@ -288,7 +288,6 @@ function fileExplorer (localRegistry, files, menuItems) {
tooltip(`failed to remove file ${key}.`) tooltip(`failed to remove file ${key}.`)
} else { } else {
const { type } = fileManager.currentFileProvider() const { type } = fileManager.currentFileProvider()
console.log('file deleted!')
self.updatePath(type) self.updatePath(type)
} }
}, },
...@@ -399,8 +398,6 @@ function fileExplorer (localRegistry, files, menuItems) { ...@@ -399,8 +398,6 @@ function fileExplorer (localRegistry, files, menuItems) {
fileExplorer.prototype.updatePath = function (path) { fileExplorer.prototype.updatePath = function (path) {
this.files.resolveDirectory(path, (error, fileTree) => { this.files.resolveDirectory(path, (error, fileTree) => {
console.log('path: ', path)
console.log('fileTree: ', fileTree)
if (error) console.error(error) if (error) console.error(error)
if (!fileTree) return if (!fileTree) return
var newTree = normalize(path, fileTree) var newTree = normalize(path, fileTree)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment