Skip to content

Commit

Permalink
make methods protected
Browse files Browse the repository at this point in the history
  • Loading branch information
mstr2 committed Nov 9, 2024
1 parent 18745c5 commit d110710
Showing 1 changed file with 6 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -484,11 +484,6 @@ protected Control() {
return true;
}

@Override
public boolean isFocusScope() {
return true;
}

// Implementation of the Resizable interface.
// Because only the skin can know the min, pref, and max sizes, these
// functions are implemented to delegate to skin. If there is no skin then
Expand Down Expand Up @@ -600,6 +595,11 @@ public boolean isFocusScope() {
}
}

@Override
protected boolean isFocusScope() {
return true;
}

/* *************************************************************************
* Implementation of layout bounds for the Control. We want to preserve *
* the lazy semantics of layout bounds. So whenever the width/height *
Expand Down Expand Up @@ -640,7 +640,7 @@ protected Skin<?> createDefaultSkin() {
}

@Override
public Node getFocusDelegate() {
protected Node getFocusDelegate() {
if (skinBase != null) {
return skinBase.getFocusDelegate();
}
Expand Down

0 comments on commit d110710

Please sign in to comment.