summaryrefslogtreecommitdiff
path: root/src/actors/scala/actors/ReplyReactor.scala
diff options
context:
space:
mode:
authorPhilipp Haller <hallerp@gmail.com>2010-03-25 13:14:28 +0000
committerPhilipp Haller <hallerp@gmail.com>2010-03-25 13:14:28 +0000
commit56003e8535831eb3acf482a4e7638cb6a41849ec (patch)
tree3a2cd2592986d8208d02e87ca3cf2213cc8ca048 /src/actors/scala/actors/ReplyReactor.scala
parent3931ab281f0fb8ab23273eb2e77cd3e72255c5de (diff)
downloadscala-56003e8535831eb3acf482a4e7638cb6a41849ec.tar.gz
scala-56003e8535831eb3acf482a4e7638cb6a41849ec.tar.bz2
scala-56003e8535831eb3acf482a4e7638cb6a41849ec.zip
Renamed Replyable* types to *CanReply. No review.
Diffstat (limited to 'src/actors/scala/actors/ReplyReactor.scala')
-rw-r--r--src/actors/scala/actors/ReplyReactor.scala2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/actors/scala/actors/ReplyReactor.scala b/src/actors/scala/actors/ReplyReactor.scala
index c933c43cf2..26057ab9cb 100644
--- a/src/actors/scala/actors/ReplyReactor.scala
+++ b/src/actors/scala/actors/ReplyReactor.scala
@@ -21,7 +21,7 @@ import java.util.{Timer, TimerTask}
*
* @author Philipp Haller
*/
-trait ReplyReactor extends Reactor[Any] with ReplyableReactor {
+trait ReplyReactor extends Reactor[Any] with ReactorCanReply {
/* A list of the current senders. The head of the list is
* the sender of the message that was received last.