You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
the generated code causes a deprecation warning in Scala 2.13:
Passing an explicit array value to a Scala varargs method is deprecated (since 2.13.0) and will result in a defensive copy; Use the more efficient non-copying ArraySeq.unsafeWrapArray or an explicit toIndexedSeq call
I'm not sure if this will go away when this issue is released, but if a project uses -Xfatal-warnings this blocks compilation.
The text was updated successfully, but these errors were encountered:
When creating a template using varargs e.g.
@(args: (Symbol, Any)*)
the generated code causes a deprecation warning in Scala 2.13:
Passing an explicit array value to a Scala varargs method is deprecated (since 2.13.0) and will result in a defensive copy; Use the more efficient non-copying ArraySeq.unsafeWrapArray or an explicit toIndexedSeq call
I'm not sure if this will go away when this issue is released, but if a project uses
-Xfatal-warnings
this blocks compilation.The text was updated successfully, but these errors were encountered: