summaryrefslogtreecommitdiff
path: root/src/library
diff options
context:
space:
mode:
authorPaul Phillips <paulp@improving.org>2013-06-13 03:34:45 -0700
committerPaul Phillips <paulp@improving.org>2013-06-13 03:34:45 -0700
commitf790662a3eab1e8efce5d4096d0efbae96cf45b4 (patch)
treeab98887517736d38669c61ba44b7f81c7eb977fa /src/library
parent5345eb27373953a3c171a7e2f9ff302db9045d33 (diff)
parentde5267d3a8854d4dea4287ff7e5c579670172bab (diff)
downloadscala-f790662a3eab1e8efce5d4096d0efbae96cf45b4.tar.gz
scala-f790662a3eab1e8efce5d4096d0efbae96cf45b4.tar.bz2
scala-f790662a3eab1e8efce5d4096d0efbae96cf45b4.zip
Merge pull request #2641 from soc/SI-6811-cloneable-definition
SI-6811 Remove scala.annotation.cloneable
Diffstat (limited to 'src/library')
-rw-r--r--src/library/scala/annotation/cloneable.scala15
1 files changed, 0 insertions, 15 deletions
diff --git a/src/library/scala/annotation/cloneable.scala b/src/library/scala/annotation/cloneable.scala
deleted file mode 100644
index 4fb62b698f..0000000000
--- a/src/library/scala/annotation/cloneable.scala
+++ /dev/null
@@ -1,15 +0,0 @@
-/* __ *\
-** ________ ___ / / ___ Scala API **
-** / __/ __// _ | / / / _ | (c) 2002-2013, LAMP/EPFL **
-** __\ \/ /__/ __ |/ /__/ __ | http://scala-lang.org/ **
-** /____/\___/_/ |_/____/_/ | | **
-** |/ **
-\* */
-
-package scala.annotation
-
-/**
- * An annotation that designates the class to which it is applied as cloneable
- */
-@deprecated("instead of `@cloneable class C`, use `class C extends Cloneable`", "2.10.0")
-class cloneable extends scala.annotation.StaticAnnotation