Unnecessary Garbage Objects in Class PropertyUtilsBean
------------------------------------------------------
Key: BEANUTILS-295
URL: https://issues.apache.org/jira/browse/BEANUTILS-295
Project: Commons BeanUtils
Issue Type: Improvement
Components: Bean / Property Utils
Affects Versions: 1.8.0-BETA
Reporter: Stefan Wohlgemuth
Priority: Minor
In class PropertyUtilsBean there are several places where the following
statement is called:
Object value = invokeMethod(readMethod, bean, new Object[0]);
The statement could be replace with the following statement, whithout creating
the unused Object array (as we know invoke will be called of a method without
method parameters):
Object value = invokeMethod(readMethod, bean, null);
--
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.