Skip to content

Commit 2326753

Browse files
committed
Sort whitelist/blacklist to not use fs order
1 parent 72ed91e commit 2326753

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

compiler/test/dotty/tools/StdLibSources.scala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ object StdLibSources {
5555
.map(_.takeWhile(_ != '#').trim) // allow comments in the end of line
5656
.filter(_.nonEmpty)
5757
.map(stdLibPath + _)
58-
.toList
58+
.toArray.sorted.toList
5959

6060
}
6161

0 commit comments

Comments
 (0)