Removed unnecessary comments

pull/5370/head
ioedeveloper 5 years ago
parent 3c2d12d157
commit 3c2559cefd
  1. 3
      src/app/files/file-explorer.js

@ -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) {
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)

Loading…
Cancel
Save