Fixing #1379 - making the DLAR the default sender in tell

This commit is contained in:
Viktor Klang 2011-11-28 17:24:41 +01:00
parent 87a22e4d28
commit 16850388e0
2 changed files with 2 additions and 2 deletions

View file

@ -282,7 +282,7 @@ class ActiveRemoteClientHandler(
val client: ActiveRemoteClient)
extends SimpleChannelUpstreamHandler {
def runOnceNow(thunk: Unit) = timer.newTimeout(new TimerTask() {
def runOnceNow(thunk: Unit): Unit = timer.newTimeout(new TimerTask() {
def run(timeout: Timeout) = try { thunk } finally { timeout.cancel() }
}, 0, TimeUnit.MILLISECONDS)