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 12 introduced java.lang.Class#arrayType() as a convenience method for Array.newInstance(type, 0).getClass(). To simplify our code and to benefit from potential future enhancements to that implementation in the JDK, we should use that new method where feasible.
The text was updated successfully, but these errors were encountered:
Java 12 introduced
java.lang.Class#arrayType()
as a convenience method forArray.newInstance(type, 0).getClass()
. To simplify our code and to benefit from potential future enhancements to that implementation in the JDK, we should use that new method where feasible.The text was updated successfully, but these errors were encountered: