Details
-
Improvement
-
Status: Closed
-
Minor
-
Resolution: Fixed
-
2.1.0, 2.1.1
-
None
-
None
Description
Right now, ExtensionLoader calls
extClazz.newInstance();
This call is deprecated in newer JDK versions. It is advised to use
return (T) extClazz.getDeclaredConstructor().newInstance();
instead in this case.
Aim(s):
- Remove the deprecated form in exchange for the recommended one.