DarwinNE / FidoCadJ

FidoCadJ is a free user-friendly vector graphic editor for MacOSX, Linux, Windows and Android with a library of electronic symbols.
http://darwinne.github.io/FidoCadJ/
GNU General Public License v3.0
111 stars 40 forks source link

Replace a.newInstance() with a.getConstructor().newInstance() on line… #169

Closed ingframin closed 4 years ago

ingframin commented 4 years ago

… 457

Class.newInstance() was deprecated in Java 9. Replacing it with Class.getConstructor().newInstance() allows for compilation with Java 9 and above.

DarwinNE commented 4 years ago

Thank you