Skip to content

Commit f6288a5

Browse files
committed
Code format cleanup
1 parent 95030c2 commit f6288a5

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

compiler/src/dotty/tools/dotc/Driver.scala

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,8 @@ class Driver {
7979
(name, e.getName.stripSuffix(".tasty").replace("/", "."))
8080
}.toList
8181
}
82-
else if (!name.endsWith(".tasty")) ("", name) :: Nil
82+
else if (!name.endsWith(".tasty"))
83+
("", name) :: Nil
8384
else if (Files.exists(path)) {
8485
TastyFileUtil.getClassName(path) match {
8586
case Some(res) => res:: Nil
@@ -89,7 +90,7 @@ class Driver {
8990
}
9091
} else {
9192
ctx0.error(s"File $name does not exist.")
92-
("", name):: Nil
93+
("", name) :: Nil
9394
}
9495
}.unzip
9596
val ctx1 = ctx0.fresh

0 commit comments

Comments
 (0)