Scala style fixes, added parens for side effecting shutdown methods

This commit is contained in:
Patrik Nordwall 2011-04-29 10:20:16 +02:00
parent cf49478183
commit 6576cd51e9
20 changed files with 91 additions and 82 deletions

View file

@ -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