make private
authorKevin Lamonte <kevin.lamonte@gmail.com>
Thu, 22 Aug 2019 18:45:06 +0000 (13:45 -0500)
committerKevin Lamonte <kevin.lamonte@gmail.com>
Thu, 22 Aug 2019 18:45:06 +0000 (13:45 -0500)
src/jexer/layout/BoxLayoutManager.java
src/jexer/layout/StretchLayoutManager.java

index 8e7a01e39231913870469d3c8b26653a6e78690b..057127fa2277e389a91c9f9e3ea5813084e918a3 100644 (file)
@@ -137,7 +137,7 @@ public class BoxLayoutManager implements LayoutManager {
      * Resize/reposition child widgets based on horizontal/vertical
      * arrangement.
      */
-    public void layoutChildren() {
+    private void layoutChildren() {
         if (children.size() == 0) {
             return;
         }
index 3dea86ab990872544cf55d247d3ed6784707b302..ee2bf5aba5e5f70d4da15e6376bcd36164b26f7e 100644 (file)
@@ -144,7 +144,7 @@ public class StretchLayoutManager implements LayoutManager {
      * Resize/reposition child widgets based on difference between current
      * dimensions and the original dimensions.
      */
-    public void layoutChildren() {
+    private void layoutChildren() {
         double widthRatio = (double) width / originalWidth;
         if (!Double.isFinite(widthRatio)) {
             widthRatio = 1;