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:
Dale Wijnand 2018-04-24 07:29:49 +01:00
parent a2af3bff15
commit 065b65a05e
No known key found for this signature in database
GPG Key ID: 4F256E3D151DF5EF
1 changed files with 1 additions and 1 deletions

View File

@ -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"
)
}),