summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSimon Ochsenreither <simon@ochsenreither.de>2013-01-17 19:59:30 +0100
committerSimon Ochsenreither <simon@ochsenreither.de>2013-01-17 20:52:24 +0100
commit4805b97b62b00b39fee55ee9855ae8c046f5d621 (patch)
tree84ad7bc9489b6b976f57741d2b8c91a54b15587f
parentbc1d0cabb0ac3fc5401025ec1a909553895a9fd7 (diff)
downloadscala-4805b97b62b00b39fee55ee9855ae8c046f5d621.tar.gz
scala-4805b97b62b00b39fee55ee9855ae8c046f5d621.tar.bz2
scala-4805b97b62b00b39fee55ee9855ae8c046f5d621.zip
SI-6811 Remove scala.annotation.serializable
Every usage of it has been eliminated in earlier commits, so the source file can finally be removed, too.
-rw-r--r--src/library/scala/annotation/serializable.scala15
1 files changed, 0 insertions, 15 deletions
diff --git a/src/library/scala/annotation/serializable.scala b/src/library/scala/annotation/serializable.scala
deleted file mode 100644
index 1e1aff19d3..0000000000
--- a/src/library/scala/annotation/serializable.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 serializable
- */
-@deprecated("instead of `@serializable class C`, use `class C extends Serializable`", "2.9.0")
-class serializable extends scala.annotation.StaticAnnotation