We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
This is more just an advisory issue that could be updated and released if older versions like Scala 2.11 and 2.12 get dropped.
Change in Scala 2.13: scala/scala#7966
Code affected: https://github.com/ekrich/sconfig/blob/master/sconfig/shared/src/main/scala/org/ekrich/config/impl/SimpleConfigList.scala#L270
Potential change:
From: override def toArray[T](a: Array[T with Object]): Array[T with Object] =??? To: override def toArray[T <: Object](a: Array[T]): Array[T] = ???
override def toArray[T](a: Array[T with Object]): Array[T with Object] =???
override def toArray[T <: Object](a: Array[T]): Array[T] = ???
The text was updated successfully, but these errors were encountered:
No branches or pull requests
This is more just an advisory issue that could be updated and released if older versions like Scala 2.11 and 2.12 get dropped.
Change in Scala 2.13: scala/scala#7966
Code affected: https://github.com/ekrich/sconfig/blob/master/sconfig/shared/src/main/scala/org/ekrich/config/impl/SimpleConfigList.scala#L270
Potential change:
From:
override def toArray[T](a: Array[T with Object]): Array[T with Object] =???
To:
override def toArray[T <: Object](a: Array[T]): Array[T] = ???
The text was updated successfully, but these errors were encountered: