Uploaded image for project: 'JDK'
  1. JDK
  2. JDK-5005945

GridBagLayout uses unneccessary loops

XMLWordPrintable

    • b08
    • x86
    • windows_xp

      Name: rmT116609 Date: 03/01/2004


      A DESCRIPTION OF THE REQUEST :

      There are the following lines in the GridBagLayout:

            /* Adjust the grid width and height */
            for (px = curX + curWidth; r.width < px; r.width++);
            for (py = curY + curHeight; r.height < py; r.height++);

      These could be changed to:

            /* Adjust the grid width and height */
            px = curX + curWidth;
            if(r.width < px){
                 r.width = px;
            }

           py = curY + curHeight
           if(r.height < py){
                r.height = py;
           }

      JUSTIFICATION :

      These would improve some speed and use less CPU
      (Incident Review ID: 241048)
      ======================================================================

            art Artem Ananiev (Inactive)
            rmandalasunw Ranjith Mandala (Inactive)
            Votes:
            0 Vote for this issue
            Watchers:
            0 Start watching this issue

              Created:
              Updated:
              Resolved:
              Imported:
              Indexed: