mirror of https://github.com/sbt/sbt.git
Drop -Ywarn-unused:-params
Previously we'd get in the build logs:
[error] params cannot be negated, it enables other arguments
and lots of wawrnings.
Now we just get lots of warnings without the non-fatal error message.
This commit is contained in:
parent
a2af3bff15
commit
065b65a05e
|
|
@ -48,7 +48,7 @@ object Util {
|
|||
"-Yno-adapted-args",
|
||||
"-Ywarn-dead-code",
|
||||
"-Ywarn-numeric-widen",
|
||||
"-Ywarn-unused:-patvars,-params,-implicits,_",
|
||||
"-Ywarn-unused:-patvars,-implicits,_",
|
||||
"-Ywarn-unused-import"
|
||||
)
|
||||
}),
|
||||
|
|
|
|||
Loading…
Reference in New Issue