On 5/9/06, Andrew Robinson <[EMAIL PROTECTED]> wrote:
I have released that tomahawk tag handler in component form at:

http://sourceforge.net/projects/jsf-comp/

Download the tagHandlers release:
http://sourceforge.net/project/showfiles.php?group_id=137466&package_id=168411&release_id=368243

Hey Andrew.

I started using your handler about a week ago.   One thing I noticed
was that it seemed to have some unnecessary Java 1.5? code in it.

I changed

================
                for (ActionListener listener : source.getActionListeners())
                {
================

to

================
            ActionListener actionListeners[] = source.getActionListeners();
                for (int index = 0; index < actionListeners.length; ++index)
                {
                    ActionListener listener = actionListeners[index];
================

and it has been running great for me under Java 1.4.2.

Reply via email to