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

MiniMap IndexOutOfBoundsException when empty

    XMLWordPrintableJSON

Details

    • Bug
    • Status: Resolved
    • Major
    • Resolution: Fixed
    • 1.3.1
    • 1.3.2
    • wicket
    • None

    Description

      findKey() assumes that there is at least one entry in the map

      This checks first:

      Index: /Users/John/Development/wicket/trunk/jdk-1.4/wicket/src/main/java/org/apache/wicket/util/collections/MiniMap.java
      ===================================================================
      — /Users/John/Development/wicket/trunk/jdk-1.4/wicket/src/main/java/org/apache/wicket/util/collections/MiniMap.java (revision 614519)
      +++ /Users/John/Development/wicket/trunk/jdk-1.4/wicket/src/main/java/org/apache/wicket/util/collections/MiniMap.java (working copy)
      @@ -118,13 +118,16 @@
      */
      public Object get(final Object key)
      {

      • // Search for key
      • final int index = findKey(key);
        -
      • if (index != -1)
        + if (size > 0)
        {
      • // Return value
      • return values[index];
        + // Search for key
        + final int index = findKey(key);
        +
        + if (index != -1)
        + { + // Return value + return values[index]; + }

        }

      // Failed to find key

      Attachments

        Activity

          People

            ivaynberg Igor Vaynberg
            jdpatterson John Patterson
            Votes:
            0 Vote for this issue
            Watchers:
            1 Start watching this issue

            Dates

              Created:
              Updated:
              Resolved: