Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Optimize code: Fix Constructor to determine illegal logic problems #3197

Merged
merged 5 commits into from
Jan 20, 2019
Merged
Changes from 4 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -515,7 +515,15 @@ private static Object newInstance(Class<?> cls) {
} catch (Throwable t) {
try {
Constructor<?>[] constructors = cls.getDeclaredConstructors();
if (constructors != null && constructors.length == 0) {
/**
* From Javadoc java.lang.Class#getDeclaredConstructors
* This method returns an array of Constructor objects reflecting all the constructors
* declared by the class represented by this Class object.
* This method returns an array of length 0,
* if this Class object represents an interface, a primitive type, an array class, or void.
* So I removed the logical judgment of 'constructors == null'.
*/
if (constructors.length == 0) {
ralf0131 marked this conversation as resolved.
Show resolved Hide resolved
throw new RuntimeException("Illegal constructor: " + cls.getName());
}
Constructor<?> constructor = constructors[0];
Expand Down