summaryrefslogtreecommitdiff
path: root/test/files/run/global-showdef.scala
diff options
context:
space:
mode:
authorRex Kerr <ichoran@gmail.com>2014-01-31 20:27:37 -0800
committerRex Kerr <ichoran@gmail.com>2014-01-31 20:27:37 -0800
commit24f2a3d73101e9e3c4f845f413f7a6dc2ac452af (patch)
treeb5d362fc6610139c8fa06457f75a1067a0ab625c /test/files/run/global-showdef.scala
parent624e668acfead08289078662d43d281b7b445d71 (diff)
downloadscala-24f2a3d73101e9e3c4f845f413f7a6dc2ac452af.tar.gz
scala-24f2a3d73101e9e3c4f845f413f7a6dc2ac452af.tar.bz2
scala-24f2a3d73101e9e3c4f845f413f7a6dc2ac452af.zip
SI-4997 deprecate StringLike.linesIterator for StringLike.lines
Deprecated. lines is by far more consistent with the rest of the naming in the library.
Diffstat (limited to 'test/files/run/global-showdef.scala')
-rw-r--r--test/files/run/global-showdef.scala2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/files/run/global-showdef.scala b/test/files/run/global-showdef.scala
index c3ace590ed..1d4891fd1f 100644
--- a/test/files/run/global-showdef.scala
+++ b/test/files/run/global-showdef.scala
@@ -54,7 +54,7 @@ object Bippy {
val run = new compiler.Run()
run.compileSources(List(src))
}
- output.linesIterator.toList
+ output.lines.toList
}
def showClass(name: String) = lines("-Yshow:typer", "-Xshow-class", name)
def showObject(name: String) = lines("-Yshow:typer", "-Xshow-object", name)