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

@ -143,11 +143,11 @@ abstract class RemoteSupport extends ListenerManagement with RemoteServerModule
handler
}
def shutdown {
def shutdown() {
eventHandler.stop()
removeListener(eventHandler)
this.shutdownClientModule
this.shutdownServerModule
this.shutdownClientModule()
this.shutdownServerModule()
clear
}