pekko/akka-docs/rst/scala/code/docs/event
matsu-chara 1cb088ed81 fix eventbus doc-code (#21189)
remove `new AnyRef`

before:

```
new AnyRef {
  class Listener extends Actor {
    def receive = {
      case m: Jazz       => println(s"${self.path.name} is listening to: ${m.artist}")
      case m: Electronic => println(s"${self.path.name} is listening to: ${m.artist}")
    }
  }
```

after:
```
class Listener extends Actor {
  def receive = {
    case m: Jazz       => println(s"${self.path.name} is listening to: ${m.artist}")
    case m: Electronic => println(s"${self.path.name} is listening to: ${m.artist}")
  }
}
```
2016-08-16 15:20:44 +02:00
..
EventBusDocSpec.scala remove JUnitRunner annotation, #16112 2016-04-05 17:06:58 +02:00
LoggingDocSpec.scala fix eventbus doc-code (#21189) 2016-08-16 15:20:44 +02:00