🔥 Unnecessary variable assignments

This commit is contained in:
Antonio Scandurra
2016-05-23 19:25:28 +02:00
parent 770199c76c
commit ca32c1370f

View File

@@ -13,8 +13,8 @@ export default class FileRecoveryService {
}
start () {
this.willSavePathListener = ipcMain.on('will-save-path', this.willSavePath.bind(this))
this.didSavePathListener = ipcMain.on('did-save-path', this.didSavePath.bind(this))
ipcMain.on('will-save-path', this.willSavePath.bind(this))
ipcMain.on('did-save-path', this.didSavePath.bind(this))
}
willSavePath (event, path) {