We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 831b062 commit 1555eebCopy full SHA for 1555eeb
scaladoc/src/dotty/tools/scaladoc/tasty/comments/CommentExpander.scala
@@ -259,8 +259,9 @@ class CommentExpander {
259
case vname =>
260
lookupVariable(vname, site) match {
261
case Some(replacement) => replaceWith(replacement)
262
- case None => ;
263
- println(s"Variable $vname undefined in comment for $sym in $site")
+ case None =>
+ // TODO add a CLI setting for enabling this message
264
+ // println(s"Variable $vname undefined in comment for $sym in $site")
265
}
266
267
0 commit comments