-
Enhancement
-
Resolution: Fixed
-
P5
-
None
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.
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.