mirror of https://github.com/sbt/sbt.git
Fix doc warning
The scaladoc task was warning: 'Could not find any member to link for "LinterLevelLowPriority"'. Given that LinterLevelLowPriority is a package private trait, it shouldn't be mentioned by name.
This commit is contained in:
parent
df6f3bd888
commit
82cfbe83a7
|
|
@ -41,8 +41,7 @@ package sbt.dsl
|
|||
* }}}
|
||||
* To make this work, the instances are all defined as implicit case objects. Moreover, the
|
||||
* the [[LinterLevel.Warn]] setting is made default by placing [[LinterLevel.Abort]] and
|
||||
* [[LinterLevel.Ignore]] in the [[LinterLevelLowPriority]] trait that the [[LinterLevel]]
|
||||
* companion object extends.
|
||||
* [[LinterLevel.Ignore]] using the low priority trait pattern.
|
||||
*/
|
||||
sealed trait LinterLevel
|
||||
object LinterLevel extends LinterLevelLowPriority {
|
||||
|
|
|
|||
Loading…
Reference in New Issue