File tree 3 files changed +3
-2
lines changed
src/main/scala/scala/tools/partest
3 files changed +3
-2
lines changed Original file line number Diff line number Diff line change @@ -16,6 +16,7 @@ script: admin/build.sh
16
16
17
17
jdk :
18
18
- oraclejdk8
19
+ - openjdk11
19
20
20
21
notifications :
21
22
email :
Original file line number Diff line number Diff line change @@ -7,7 +7,7 @@ name := "scala-partest"
7
7
version := " 1.1.4-SNAPSHOT"
8
8
9
9
scalaVersionsByJvm in ThisBuild := {
10
- val vs = List (" 2.12.6 " )
10
+ val vs = List (" 2.12.7 " )
11
11
12
12
Map (
13
13
8 -> vs.map(_ -> true ),
Original file line number Diff line number Diff line change @@ -47,7 +47,7 @@ package object partest {
47
47
private val GroupPattern = """ .*_(\d+)""" .r
48
48
49
49
implicit class `special string ops` (private val s : String ) extends AnyVal {
50
- def linesIfNonEmpty : Iterator [String ] = if (! s.isEmpty) s.lines else Iterator .empty
50
+ def linesIfNonEmpty : Iterator [String ] = if (! s.isEmpty) s.linesIterator else Iterator .empty
51
51
}
52
52
53
53
implicit class FileOps (val f : File ) {
You can’t perform that action at this time.
0 commit comments