summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorLinus Färnstrand <linus@mullvad.net>2018-01-16 10:48:27 +0100
committerLinus Färnstrand <linus@mullvad.net>2018-01-16 10:48:27 +0100
commit2ce8ed41f35cff48adb30ec41d15699979485c76 (patch)
tree035c2b49bd147e55d1f9eb7ca40b68187fcf58a6
parenta595255a67749dc343a03ebee69a184f74692860 (diff)
parentdede76321f8bb85ac528651f4e80c6bdd9990662 (diff)
downloadmullvadvpn-2ce8ed41f35cff48adb30ec41d15699979485c76.tar.xz
mullvadvpn-2ce8ed41f35cff48adb30ec41d15699979485c76.zip
Merge branch 'remove-eventemitter'
-rw-r--r--app/lib/backend.js2
1 files changed, 0 insertions, 2 deletions
diff --git a/app/lib/backend.js b/app/lib/backend.js
index 9439e09256..1c2e63b882 100644
--- a/app/lib/backend.js
+++ b/app/lib/backend.js
@@ -1,7 +1,6 @@
// @flow
import { log } from '../lib/platform';
-import EventEmitter from 'events';
import { IpcFacade, RealIpc } from './ipc-facade';
import accountActions from '../redux/account/actions';
import connectionActions from '../redux/connection/actions';
@@ -81,7 +80,6 @@ export class Backend {
_credentials: ?IpcCredentials;
_authenticationPromise: ?Promise<void>;
_store: ReduxStore;
- _eventEmitter = new EventEmitter();
constructor(store: ReduxStore, credentials?: IpcCredentials, ipc: ?IpcFacade) {
this._store = store;