Access and mutation of native Java unboxed arrays doesn't work
Description
We have code assuming we can cast them to Object[] but that doesn’t work on something like a char[]. Changing the approach to use the reflection API which allows generic access to arrays of any type.
Activity
Show:
Fixed
Pinned fields
Click on the next to a field label to start pinning.
We have code assuming we can cast them to
Object[]
but that doesn’t work on something like achar[]
. Changing the approach to use the reflection API which allows generic access to arrays of any type.