Skip to content

Commit

Permalink
fix compile errors
Browse files Browse the repository at this point in the history
  • Loading branch information
lbialy committed May 23, 2024
1 parent 351bc35 commit 3359e2a
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion core/src/main/scala/besom/internal/logging.scala
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ package besom.internal

import scribe.*, LoggerSupport.{apply => makeLogRecord}
import scribe.message.LoggableMessage
import scribe.data.{MDC => ScribeMDC}
import scribe.mdc.{MDC => ScribeMDC}
import sourcecode.{FileName, Line, Name, Pkg}
import scala.util.{NotGiven => Not}

Expand Down
4 changes: 2 additions & 2 deletions core/src/main/scala/besom/util/printer.scala
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,8 @@ object printer
}
):

override def treeify(x: Any): Tree =
val result = super.treeify(x)
override def treeify(x: Any, escapeUnicode: Boolean, showFieldNames: Boolean): Tree =
val result = super.treeify(x, escapeUnicode, showFieldNames)
result match
case Tree.Apply(p, body: Iterator[Tree]) =>
Tree.Apply(
Expand Down

0 comments on commit 3359e2a

Please sign in to comment.