Skip to content

Commit 499c347

Browse files
committed
Remove println
1 parent 3daeaa6 commit 499c347

File tree

1 file changed

+0
-5
lines changed

1 file changed

+0
-5
lines changed

compiler/test/dotty/tools/dotc/semanticdb/SemanticdbTests.scala

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,6 @@ class SemanticdbTests:
7171
def collectErrorOrUpdate(expectPath: Path, obtained: String) =
7272
if updateExpectFiles then
7373
Files.write(expectPath, obtained.getBytes(StandardCharsets.UTF_8))
74-
println("updated: " + expectPath)
7574
else
7675
val expected = new String(Files.readAllBytes(expectPath), StandardCharsets.UTF_8)
7776
val expectName = expectPath.getFileName
@@ -87,12 +86,8 @@ class SemanticdbTests:
8786
.resolve("semanticdb")
8887
.resolve(relpath)
8988
.resolveSibling(filename + ".semanticdb")
90-
println(semanticdbPath)
9189
val expectPath = source.resolveSibling(filename.replace(".scala", ".expect.scala"))
9290
val doc = Tools.loadTextDocument(source, relpath, semanticdbPath)
93-
println(semanticdbPath.getFileName().toString())
94-
if (semanticdbPath.getFileName().toString() == "ValPattern.scala.semanticdb")
95-
println(doc)
9691
Tools.metac(doc, rootSrc.relativize(source))(using metacSb)
9792
val obtained = trimTrailingWhitespace(SemanticdbTests.printTextDocument(doc))
9893
collectErrorOrUpdate(expectPath, obtained)

0 commit comments

Comments
 (0)