Skip to content

Commit

Permalink
fix a warning
Browse files Browse the repository at this point in the history
  • Loading branch information
tribbloid committed Feb 13, 2023
1 parent 31bdff1 commit 5362cc3
Showing 1 changed file with 1 addition and 2 deletions.
Expand Up @@ -329,8 +329,7 @@ trait SplainFormatting extends SplainFormatters {

object Compact extends FormattedChain(collectCompact)

lazy val VimplicitsVerboseTree: Boolean = settings.VimplicitsVerboseTree
val display: FormattedChain = if (VimplicitsVerboseTree) Full else Compact
val display: FormattedChain = if (settings.VimplicitsVerboseTree.value) Full else Compact
}

override def toString: String = FormattedChain.Full.toString
Expand Down

0 comments on commit 5362cc3

Please sign in to comment.