scalafix ConstructorProcedureSyntax

fix by:
+ enabling only ConstructorProcedureSyntax rule in .scalafix.conf
+ then:
```
% sbt -Dakka.build.scalaVersion=2.13.1
> fixall
> scalafmtAll
```
This commit is contained in:
Bùi Việt Thành 2020-04-03 00:13:12 +07:00
parent 68e30b39bc
commit 46a310e2cc
10 changed files with 15 additions and 26 deletions

View file

@ -45,7 +45,7 @@ class LocalConcurrencySpec(_system: ActorSystem)
with ImplicitSender {
import LocalConcurrencySpec._
def this() {
def this() =
this(
ActorSystem(
"LocalConcurrencySpec",
@ -54,7 +54,6 @@ class LocalConcurrencySpec(_system: ActorSystem)
akka.remote.classic.netty.tcp.port=0
akka.remote.artery.canonical.port = 0
""")))
}
override def afterAll(): Unit = {
shutdown(system)