jMonkeyEngine / sdk

The jMonkeyEngine3 Software Development Kit based on Netbeans
BSD 3-Clause "New" or "Revised" License
313 stars 100 forks source link

Fix many Java > 8 deprecation warnings #198

Closed MeFisto94 closed 4 years ago

MeFisto94 commented 5 years ago

With Netbeans 9/11, we are on java 10 for most modules (java 6 got deprecated, and there is no reason to use a lower version than what is supported/required).

Most of these issues are new Integer(i) or new Float(f) to box, instead one should use Autoboxing or a cast where necessary.

In theory one should compile a list of these warnings and then we can track progress here, but since those are so many, just fix a few warnings and tag your commit message as towards #<issue>, at best do it module-wise

tonihele commented 4 years ago

Sorry, I missed this issue. This was done in the cleanups. https://github.com/jMonkeyEngine/sdk/pull/219 https://github.com/jMonkeyEngine/sdk/pull/216

tonihele commented 4 years ago

This one remains: https://github.com/jMonkeyEngine/sdk/issues/217

MeFisto94 commented 4 years ago

Closing, as #217 is a new issue