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

org.apache.wicket.util.string.StringValue#equals broken

    XMLWordPrintableJSON

Details

    • Bug
    • Status: Resolved
    • Minor
    • Resolution: Fixed
    • 6.10.0
    • 6.12.0, 7.0.0-M1
    • wicket
    • None

    Description

      The #equals implementation for org.apache.wicket.util.string.StringValue is broken. The following throws an exception instead of just printing 'false':

      StringValue val = StringValue.valueOf("bla", Locale.FRANCE);
      StringValue val2 = StringValue.valueOf("bla", Locale.CANADA);
      System.out.println(val.equals(val2));

      This part of #equals
      Objects.isEqual(locale, stringValue.locale)

      should probably be replaced with something like
      (locale == stringValue.locale || (locale != null && locale.equals(stringValue.locale))

      -> Objects.isEqual is not suitable to determine equality of Locale

      Attachments

        Activity

          People

            svenmeier Sven Meier
            jonas Jonas
            Votes:
            0 Vote for this issue
            Watchers:
            2 Start watching this issue

            Dates

              Created:
              Updated:
              Resolved: