Remove uneeded parameter

This commit is contained in:
Derek Williams 2011-03-07 21:24:21 -07:00
parent cda0c1bbb4
commit 8cad134c32

View file

@ -36,7 +36,7 @@ final case class FutureInvocation(future: CompletableFuture[Any], function: () =
Right(function.apply)
} catch {
case e: Exception =>
EventHandler notifyListeners EventHandler.Error(e, this, e.toString)
EventHandler notifyListeners EventHandler.Error(e, this)
Left(e)
})
}