Skip to content

Commit 70db6b5

Browse files
Revert unnecessary diff
1 parent a9e3eab commit 70db6b5

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

compiler/src/dotty/tools/dotc/printing/PlainPrinter.scala

+2-2
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ class PlainPrinter(_ctx: Context) extends Printer {
4545
protected def debugPos: Boolean = ctx.settings.YdebugPos.value
4646

4747
def homogenize(tp: Type): Type =
48-
if (homogenizedView) {
48+
if (homogenizedView)
4949
tp match {
5050
case tp: ThisType if tp.cls.is(Package) && !tp.cls.isEffectiveRoot =>
5151
ctx.requiredPackage(tp.cls.fullName).termRef
@@ -64,7 +64,7 @@ class PlainPrinter(_ctx: Context) extends Printer {
6464
case _ =>
6565
tp
6666
}
67-
} else tp
67+
else tp
6868

6969
private def sameBound(lo: Type, hi: Type): Boolean =
7070
try lo frozen_=:= hi catch { case NonFatal(ex) => false }

0 commit comments

Comments
 (0)