mirror of
https://github.com/atom/atom.git
synced 2026-01-24 14:28:14 -05:00
🔥 Unnecessary variable assignments
This commit is contained in:
@@ -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) {
|
||||
|
||||
Reference in New Issue
Block a user