[
https://issues.apache.org/jira/browse/BEANUTILS-295?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
]
Stefan Wohlgemuth updated BEANUTILS-295:
----------------------------------------
Attachment: PropertyUtilsBean_EmptyObjectArray_Patch.txt
This is the patch file for this improvement
> 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
> Fix For: 1.8.0
>
> Attachments: profiling.png,
> PropertyUtilsBean_EmptyObjectArray_Patch.txt
>
>
> 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.