make sure the bus is only instanciated once

pull/2676/head
Thibault Duplessis 2017-02-13 15:17:32 +01:00
parent 7941b7b4db
commit 95fc79edef
1 changed files with 1 additions and 1 deletions

View File

@ -3,7 +3,7 @@ package lila.common
import akka.actor._
import akka.event._
final class Bus(system: ActorSystem) extends Extension with EventBus {
final class Bus private(system: ActorSystem) extends Extension with EventBus {
type Event = Bus.Event
type Classifier = Symbol