On May 19, 2009, at 8:09 PM, Vincent Massol wrote:
+
if
(componentDescriptor
.getInstantiationStrategy
().equals(ComponentInstantiationStrategy.PER_LOOKUP)) {
you could write:
if (componentDescriptor.getInstantiationStrategy() ==
ComponentInstantiationStrategy.PER_LOOKUP)
Right :)
Thanks.
Fabio