Remove unused code

This commit is contained in:
2020-02-13 14:08:11 -06:00
parent 19fcf896df
commit efc85c1759
5 changed files with 24 additions and 45 deletions

View File

@@ -222,7 +222,7 @@ const addListeners = (ipcMain, setTrayImage, standardIPCReply) => {
}, error || Error(data.Provider + ' Unmounted'));
};
helpers
.executeMount(data.Version, data.Provider, data.Remote, data.Location, data.NoConsoleSupported, (error, pid) => {
.executeMount(data.Version, data.Provider, data.Remote, data.Location, (error, pid) => {
errorHandler(pid, error);
})
.then(() => {
@@ -272,4 +272,4 @@ const addListeners = (ipcMain, setTrayImage, standardIPCReply) => {
module.exports = {
addListeners,
unmountAllDrives
};
};