Looks like you found a(nother) bug.

>         if ( portlet.getName().equals(jdata.getCustomized())

will find the common matching 'equals' methods on both objects.
In this its found in the common base class to both the String and the
Portlet classes: 'Object.equals'

So the code will short circuit the if everytime since this can never be
true.

Perhaps the intention here was:

         if ( portlet.getName().equals(jdata.getCustomized().getName())





--
To unsubscribe, e-mail:   <mailto:[EMAIL PROTECTED]>
For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>

Reply via email to