The problem is that arrays are not like normal gen...
# announcements
d
The problem is that arrays are not like normal generic classes, because of Java. In Java an array of strings and an array of objects is a different object. So
Array<Nothing>
would have to be
Nothing[]
in Java, which does not really work.