Scala style fixes, added parens for side effecting shutdown methods
This commit is contained in:
parent
cf49478183
commit
6576cd51e9
20 changed files with 91 additions and 82 deletions
|
|
@ -221,9 +221,9 @@ trait ExecutorServiceDelegate extends ExecutorService {
|
|||
|
||||
def execute(command: Runnable) = executor.execute(command)
|
||||
|
||||
def shutdown = executor.shutdown
|
||||
def shutdown() { executor.shutdown() }
|
||||
|
||||
def shutdownNow = executor.shutdownNow
|
||||
def shutdownNow() = executor.shutdownNow()
|
||||
|
||||
def isShutdown = executor.isShutdown
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue