summaryrefslogtreecommitdiff
path: root/src/actors/scala/actors/ReplyReactor.scala
diff options
context:
space:
mode:
authorVojin Jovanovic <vojin.jovanovic@epfl.ch>2012-05-23 09:46:21 +0200
committerVojin Jovanovic <vojin.jovanovic@epfl.ch>2012-05-23 09:46:21 +0200
commit033463f87fe71e8f6d5b17f7cb82b8c2ea5f5271 (patch)
tree5cac4d83c5f22ef9b947d6830d2731e7444b2450 /src/actors/scala/actors/ReplyReactor.scala
parente99fb0c93842d517b8a185458f405bace2bbb46b (diff)
downloadscala-033463f87fe71e8f6d5b17f7cb82b8c2ea5f5271.tar.gz
scala-033463f87fe71e8f6d5b17f7cb82b8c2ea5f5271.tar.bz2
scala-033463f87fe71e8f6d5b17f7cb82b8c2ea5f5271.zip
Minor fixes for the Actor Migration Kit
Fixed behavior of the StashingActor in case of unhandeled message. Fixed a typo in deprecated annotation. Fixed comments. Fixed copyright.
Diffstat (limited to 'src/actors/scala/actors/ReplyReactor.scala')
-rw-r--r--src/actors/scala/actors/ReplyReactor.scala7
1 files changed, 2 insertions, 5 deletions
diff --git a/src/actors/scala/actors/ReplyReactor.scala b/src/actors/scala/actors/ReplyReactor.scala
index 0ffbbd3cce..83d7ba0f7f 100644
--- a/src/actors/scala/actors/ReplyReactor.scala
+++ b/src/actors/scala/actors/ReplyReactor.scala
@@ -7,10 +7,7 @@
\* */
package scala.actors
-@deprecated("Scala Actors are beeing removed from the standard library. Please refer to the migration guide.", "2.10")
+@deprecated("Scala Actors are being removed from the standard library. Please refer to the migration guide.", "2.10")
trait ReplyReactor extends InternalReplyReactor {
-
- protected[actors] def sender: OutputChannel[Any] = super.internalSender
-
+ protected[actors] def sender: OutputChannel[Any] = super.internalSender
}
-