summaryrefslogtreecommitdiff
path: root/test/disabled/presentation/akka/src/akka/actor/package.scala
diff options
context:
space:
mode:
Diffstat (limited to 'test/disabled/presentation/akka/src/akka/actor/package.scala')
-rw-r--r--test/disabled/presentation/akka/src/akka/actor/package.scala23
1 files changed, 0 insertions, 23 deletions
diff --git a/test/disabled/presentation/akka/src/akka/actor/package.scala b/test/disabled/presentation/akka/src/akka/actor/package.scala
deleted file mode 100644
index fbeeed49cb..0000000000
--- a/test/disabled/presentation/akka/src/akka/actor/package.scala
+++ /dev/null
@@ -1,23 +0,0 @@
-/**
- * Copyright (C) 2009-2011 Scalable Solutions AB <http://scalablesolutions.se>
- */
-
-package akka
-
-import actor.{ ScalaActorRef, ActorRef }
-
-package object actor {
- implicit def actorRef2Scala(ref: ActorRef): ScalaActorRef =
- ref.asInstanceOf[ScalaActorRef]
-
- implicit def scala2ActorRef(ref: ScalaActorRef): ActorRef =
- ref.asInstanceOf[ActorRef]
-
- type Uuid = com.eaio.uuid.UUID
-
- def newUuid(): Uuid = new Uuid()
-
- def uuidFrom(time: Long, clockSeqAndNode: Long): Uuid = new Uuid(time, clockSeqAndNode)
-
- def uuidFrom(uuid: String): Uuid = new Uuid(uuid)
-}