Skip to content

Commit affdaf2

Browse files
committed
Remove StructuralCallSite.java from stdlib blacklist
Following fix to #4739.
1 parent 0a5e1a6 commit affdaf2

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

compiler/test/dotty/tools/TestSources.scala

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,6 @@ object TestSources {
1010
// Std Lib
1111
def stdLibSources: List[String] = {
1212
val blacklisted = List(
13-
"StructuralCallSite.java", // see #4739
1413
"volatile.scala", // see #5610
1514
)
1615
sources(Paths.get("tests/scala2-library/src/library/"), excludedFiles = blacklisted)
@@ -46,7 +45,7 @@ object TestSources {
4645
val list = Files.readAllLines(Paths.get(path))
4746
.iterator()
4847
.asScala
49-
.map(_.trim) // allow identation
48+
.map(_.trim) // allow indentation
5049
.filterNot(_.startsWith("#")) // allow comment lines prefixed by #
5150
.map(_.takeWhile(_ != '#').trim) // allow comments in the end of line
5251
.filter(_.nonEmpty)

0 commit comments

Comments
 (0)