summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGrzegorz Kossakowski <grzegorz.kossakowski@gmail.com>2012-09-18 15:08:29 +0200
committerGrzegorz Kossakowski <grzegorz.kossakowski@gmail.com>2012-09-18 15:08:29 +0200
commitfbed8130dc27250b5ea28b45a662479139d0d1f2 (patch)
treef770e1b9cd2c922e2133e77d3b0354b4e6cf3ca7
parent220ea078912b497b26f9f74314b842a2e76c298c (diff)
downloadscala-fbed8130dc27250b5ea28b45a662479139d0d1f2.tar.gz
scala-fbed8130dc27250b5ea28b45a662479139d0d1f2.tar.bz2
scala-fbed8130dc27250b5ea28b45a662479139d0d1f2.zip
Remove `@static` annotation from the library.
It's a follow-up commit on 4bfcadabae7663e4329f5a4b21a9368477a7e3e3.
-rw-r--r--src/library/scala/annotation/static.scala20
1 files changed, 0 insertions, 20 deletions
diff --git a/src/library/scala/annotation/static.scala b/src/library/scala/annotation/static.scala
deleted file mode 100644
index f2955c756c..0000000000
--- a/src/library/scala/annotation/static.scala
+++ /dev/null
@@ -1,20 +0,0 @@
-/* __ *\
-** ________ ___ / / ___ Scala API **
-** / __/ __// _ | / / / _ | (c) 2002-2011, LAMP/EPFL **
-** __\ \/ /__/ __ |/ /__/ __ | http://scala-lang.org/ **
-** /____/\___/_/ |_/____/_/ | | **
-** |/ **
-\* */
-
-package scala.annotation
-
-/**
- * An annotation that marks a member in the companion object as static
- * and ensures that the compiler generates static fields/methods for it.
- * This is important for Java interoperability and performance reasons.
- *
- * @since 2.10
- */
-final class static extends StaticAnnotation {
- // TODO document exact semantics above!
-}