Skip to content

Commit

Permalink
minor reformatting
Browse files Browse the repository at this point in the history
  • Loading branch information
Jonas Bonér committed Jul 29, 2010
1 parent 117eb3b commit 78f1324
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
4 changes: 3 additions & 1 deletion akka-core/src/main/scala/actor/TypedActor.scala
Expand Up @@ -379,7 +379,9 @@ object TypedActor extends Logging {
* Get the underlying dispatcher actor for the given Typed Actor.
*/
def actorFor(proxy: AnyRef): Option[ActorRef] =
ActorRegistry.actorsFor(classOf[Dispatcher]).find(a => a.actor.asInstanceOf[Dispatcher].proxy == proxy)
ActorRegistry
.actorsFor(classOf[Dispatcher])
.find(a => a.actor.asInstanceOf[Dispatcher].proxy == proxy)

/**
* Links an other Typed Actor to this Typed Actor.
Expand Down
3 changes: 1 addition & 2 deletions akka-core/src/main/scala/actor/UntypedActor.scala
Expand Up @@ -29,6 +29,5 @@ abstract class UntypedActor extends Actor {
*
* @author <a href="http://jonasboner.com">Jonas Bon&#233;r</a>
*/
class ActorContext(self: ActorRef) {

class ActorContext(val self: ActorRef) {
}

0 comments on commit 78f1324

Please sign in to comment.