summaryrefslogtreecommitdiff
path: root/src/compiler
diff options
context:
space:
mode:
authorJosh Suereth <Joshua.Suereth@gmail.com>2012-07-11 15:54:39 -0700
committerJosh Suereth <Joshua.Suereth@gmail.com>2012-07-11 15:54:39 -0700
commit25e2bb072caf37677f8b04a01c28f190f17494ef (patch)
tree88760f99f14ed570a86537380ecab95c448b87eb /src/compiler
parent3d0099dbc990ab914de5b9deb5087d9d3fb6220c (diff)
parent8e42c37dfb9ecdfc402fc91e319e1d189e683a81 (diff)
downloadscala-25e2bb072caf37677f8b04a01c28f190f17494ef.tar.gz
scala-25e2bb072caf37677f8b04a01c28f190f17494ef.tar.bz2
scala-25e2bb072caf37677f8b04a01c28f190f17494ef.zip
Merge pull request #881 from lrytz/t4763
SI-4763 deprecated `@cloneable` annotation
Diffstat (limited to 'src/compiler')
-rw-r--r--src/compiler/scala/tools/nsc/backend/jvm/GenASM.scala2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/compiler/scala/tools/nsc/backend/jvm/GenASM.scala b/src/compiler/scala/tools/nsc/backend/jvm/GenASM.scala
index 324f0a4b65..8d243a1dd0 100644
--- a/src/compiler/scala/tools/nsc/backend/jvm/GenASM.scala
+++ b/src/compiler/scala/tools/nsc/backend/jvm/GenASM.scala
@@ -1323,7 +1323,7 @@ abstract class GenASM extends SubComponent with BytecodeWriters {
// Additional interface parents based on annotations and other cues
def newParentForAttr(attr: Symbol): Option[Symbol] = attr match {
case SerializableAttr => Some(SerializableClass)
- case CloneableAttr => Some(JavaCloneableClass)
+ case CloneableAttr => Some(CloneableClass)
case RemoteAttr => Some(RemoteInterfaceClass)
case _ => None
}