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

Optimize usage of redundant method calls in layout classes

XMLWordPrintable

    • Icon: Enhancement Enhancement
    • Resolution: Fixed
    • Icon: P5 P5
    • 8
    • None
    • javafx

      There are a bunch of places in layout classes where redundant method calls are being made, such as in AnchorPane layoutChildren as seen below:


              for (int i = 0; i < getChildren().size(); i++) {
                  Node child = getChildren().get(i);
                  ...
              }


      This will likely have very little impact, but it is a minor thing worth doing and easy to do.

            kwwong Kinsley Wong (Inactive)
            rbair Richard Bair (Inactive)
            Votes:
            0 Vote for this issue
            Watchers:
            1 Start watching this issue

              Created:
              Updated:
              Resolved:
              Imported: