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
Integer.TYPE and Boolean.TYPE should be replaced with int.class and boolean.class respectively, as that's more easy to understand (the compiler converts any primitive .class call to the respective wrapper class .TYPE)
The text was updated successfully, but these errors were encountered:
(Originally opened as MinecraftForge/ForgeGradle#713 on the wrong repo)
This is a very minor enchancement, but it should be pretty easy to implement
See InputMapping clinit:
Integer.TYPE
andBoolean.TYPE
should be replaced withint.class
andboolean.class
respectively, as that's more easy to understand (the compiler converts any primitive.class
call to the respective wrapper class.TYPE
)The text was updated successfully, but these errors were encountered: