remove unused deprecate module from crashreporter

This commit is contained in:
Shelley Vohr 2018-02-20 08:31:38 -05:00
parent fc025064f7
commit 1a3661206e
No known key found for this signature in database
GPG key ID: F13993A75599653C

View file

@ -4,7 +4,7 @@ const {spawn} = require('child_process')
const os = require('os')
const path = require('path')
const electron = require('electron')
const {app, deprecate} = process.type === 'browser' ? electron : electron.remote
const {app} = process.type === 'browser' ? electron : electron.remote
const binding = process.atomBinding('crash_reporter')
class CrashReporter {