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
Java modules do not allow split packages, that is having two modules on your modulepath containing packages with the same name (note that packages are not hierarchical in Java, so scala and scala.reflect are unrelated packages).
Unfortunately, the standard library contains a few classes in scala.reflect: https://github.com/scala/scala/tree/2.13.x/src/library/scala/reflect So we need to find a new home for them. Everything but ClassTag is basically obsolete (although my attempt at getting rid of them wasn't successful). So the main question is: where do we put ClassTag ? I think it's harmless enough that we could just put it in scala directly. WDYT ?
The text was updated successfully, but these errors were encountered:
Java modules do not allow split packages, that is having two modules on your modulepath containing packages with the same name (note that packages are not hierarchical in Java, so
scala
andscala.reflect
are unrelated packages).Unfortunately, the standard library contains a few classes in scala.reflect: https://github.com/scala/scala/tree/2.13.x/src/library/scala/reflect So we need to find a new home for them. Everything but ClassTag is basically obsolete (although my attempt at getting rid of them wasn't successful). So the main question is: where do we put
ClassTag
? I think it's harmless enough that we could just put it inscala
directly. WDYT ?The text was updated successfully, but these errors were encountered: