Uploaded image for project: 'Wicket'
  1. Wicket
  2. WICKET-3414

Add break after finding Method in AutoComponentResolver invokeSetter

    XMLWordPrintableJSON

Details

    • Improvement
    • Status: Resolved
    • Minor
    • Resolution: Fixed
    • 1.5-RC1
    • 1.4.16, 1.5-RC2
    • wicket
    • None
    • all

    Description

      org/apache/
      wicket/markup/resolver/AutoComponentResolver.java invokeSetter method
      change from:
      Method method = null;
      for (Method methodTested : methods)
      {
      if (methodTested.getName().equalsIgnoreCase(methodName))

      { method = methodTested; }

      }
      to: Method method = null;
      for (Method methodTested : methods)
      {
      if (methodTested.getName().equalsIgnoreCase(methodName))

      { method = methodTested; break; }

      }

      Attachments

        Activity

          People

            mgrigorov Martin Tzvetanov Grigorov
            emberson Richard Emberson
            Votes:
            0 Vote for this issue
            Watchers:
            0 Start watching this issue

            Dates

              Created:
              Updated:
              Resolved: