Update prettier

This commit is contained in:
Thomas Nordquist
2020-04-15 23:54:30 +02:00
parent fbfbe94d19
commit 237c718a0a
76 changed files with 130 additions and 257 deletions

View File

@@ -27,7 +27,7 @@ export class ConnectionManager {
this.connections[connectionId] = connection
const connectionStateEvent = makeConnectionStateEvent(connectionId)
connection.stateMachine.onUpdate.subscribe(state => {
connection.stateMachine.onUpdate.subscribe((state) => {
backendEvents.emit(connectionStateEvent, state)
})
@@ -72,6 +72,6 @@ export class ConnectionManager {
}
public closeAllConnections() {
Object.keys(this.connections).forEach(connectionId => this.removeConnection(connectionId))
Object.keys(this.connections).forEach((connectionId) => this.removeConnection(connectionId))
}
}