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
In ReflectionHelper#getObjectClass, the documentation right above the mismatch states that the primitive class is something such as int.class, and that the Object class is something such as Integer.class, but in the typo spots from lines 2694 to 2697, it states that the primitive class is something such as Integer.class (the Object class), and that the Object class is something such as int.class (the primitive class). It almost seems as if it was simply copy-pasted from the documentation for ReflectionHelper#getPrimitiveClass, which makes this mistake understandable and marginally disregardable.
The text was updated successfully, but these errors were encountered:
In ReflectionHelper#getObjectClass, the documentation right above the mismatch states that the primitive class is something such as int.class, and that the Object class is something such as Integer.class, but in the typo spots from lines 2694 to 2697, it states that the primitive class is something such as Integer.class (the Object class), and that the Object class is something such as int.class (the primitive class). It almost seems as if it was simply copy-pasted from the documentation for ReflectionHelper#getPrimitiveClass, which makes this mistake understandable and marginally disregardable.
The text was updated successfully, but these errors were encountered: