-
Notifications
You must be signed in to change notification settings - Fork 607
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Fix build warnings #2769
Fix build warnings #2769
Conversation
@@ -305,7 +305,7 @@ private[fs2] trait ioplatform { | |||
/** Stream of bytes read asynchronously from standard input. | |||
* Takes a dummy `Int` parameter for source-compatibility with JVM. | |||
*/ | |||
@nowarn("cat=unused") | |||
@nowarn // ("cat=unused") - unsupported category on scala 3 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@nowarn // ("cat=unused") - unsupported category on scala 3 | |
@nowarn("msg=never used") |
h/t @bplommer when we setup Scala 3 fatal warnings for http4s
The test failures are a bit worrisome... I assume the cause is the change to |
…l create an ArraySlice
Oh hm, I bet it's actually this change: ThisBuild / Test / javaOptions ++= Seq(
"-Dscala.concurrent.context.minThreads=8",
"-Dscala.concurrent.context.numThreads=8",
"-Dscala.concurrent.context.maxThreads=8"
) |
… parallel test execution, use cross-friendly nowarn unused trick
OK this should be good to go now |
No description provided.