summaryrefslogtreecommitdiff
path: root/src/compiler
diff options
context:
space:
mode:
authorLukas Rytz <lukas.rytz@epfl.ch>2012-07-10 16:18:15 +0200
committerLukas Rytz <lukas.rytz@epfl.ch>2012-07-11 20:13:58 +0200
commit8e42c37dfb9ecdfc402fc91e319e1d189e683a81 (patch)
tree0a70e6829a10fb5f3ea0f90a25c2ae35f0788937 /src/compiler
parentbbd48868a44a1336db8ff4b02ac78d8c6d497448 (diff)
downloadscala-8e42c37dfb9ecdfc402fc91e319e1d189e683a81.tar.gz
scala-8e42c37dfb9ecdfc402fc91e319e1d189e683a81.tar.bz2
scala-8e42c37dfb9ecdfc402fc91e319e1d189e683a81.zip
SI-4763 Deprecated the `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 0d804e6e9f..18f806ac8a 100644
--- a/src/compiler/scala/tools/nsc/backend/jvm/GenASM.scala
+++ b/src/compiler/scala/tools/nsc/backend/jvm/GenASM.scala
@@ -1322,7 +1322,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
}