You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@gora.apache.org by "Ted Yu (JIRA)" <ji...@apache.org> on 2018/03/13 17:53:00 UTC

[jira] [Created] (GORA-536) Avoid calling Class#newInstance

Ted Yu created GORA-536:
---------------------------

             Summary: Avoid calling Class#newInstance
                 Key: GORA-536
                 URL: https://issues.apache.org/jira/browse/GORA-536
             Project: Apache Gora
          Issue Type: Task
            Reporter: Ted Yu


Class::newInstance is deprecated starting in Java 9 - https://bugs.openjdk.java.net/browse/JDK-6850612 - because it may throw undeclared checked exceptions.

The suggested replacement is {{getDeclaredConstructor().newInstance()}}, which will wrap the checked exceptions in InvocationException.



--
This message was sent by Atlassian JIRA
(v7.6.3#76005)