Christewart commented on issue #307: URL: https://github.com/apache/pekko-grpc/issues/307#issuecomment-2112749185
> We still support scala 2.12 so we will not be making scala3 style source the default. If someone finds a way to make this configurable - then we can go that route. I think in my case, its literally just adding type annotations to the generated scala code The non compliant `-Xsource:3` code //does not compile with `-Xsource:3` lazy val values = scala.collection.immutable.Seq(LEGACY, ANCHOR) what `-quickfix:any` rewrites it to ```scala lazy val values: Seq[wtclientrpc.PolicyType.Recognized] = scala.collection.immutable.Seq(LEGACY, ANCHOR) ``` I know collections were redone in `2.13.x`, does this mean this can't safely be done while still supporting `2.12.x`? -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected] --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
