summaryrefslogtreecommitdiff
path: root/src/library
diff options
context:
space:
mode:
authorSimon Ochsenreither <simon@ochsenreither.de>2012-09-21 21:46:52 +0200
committerSimon Ochsenreither <simon@ochsenreither.de>2012-10-08 05:25:26 +0200
commit3b73e0dd101aade6478517016df80975e6b996bd (patch)
tree224ee268a36de3593b82c44b1d8c6885a984c839 /src/library
parent025e1aeb9b9e558a261930164e2c837494ddd25d (diff)
downloadscala-3b73e0dd101aade6478517016df80975e6b996bd.tar.gz
scala-3b73e0dd101aade6478517016df80975e6b996bd.tar.bz2
scala-3b73e0dd101aade6478517016df80975e6b996bd.zip
SI-6388 Remove some remaining, minor deprecations
Diffstat (limited to 'src/library')
-rw-r--r--src/library/scala/io/Position.scala8
1 files changed, 0 insertions, 8 deletions
diff --git a/src/library/scala/io/Position.scala b/src/library/scala/io/Position.scala
index dae478f31a..8c2d62f5b1 100644
--- a/src/library/scala/io/Position.scala
+++ b/src/library/scala/io/Position.scala
@@ -68,14 +68,6 @@ abstract class Position {
}
object Position extends Position {
- /** The undefined position */
- @deprecated("This will be removed", "2.9.0")
- final val NOPOS = 0
-
- /** The first position in a source file */
- @deprecated("This will be removed", "2.9.0")
- final val FIRSTPOS = encode(1, 1)
-
def checkInput(line: Int, column: Int) {
if (line < 0)
throw new IllegalArgumentException(line + " < 0")