Skip to content

Commit

Permalink
set editNext method to protected
Browse files Browse the repository at this point in the history
  • Loading branch information
Shadi Shaheen committed Sep 15, 2020
1 parent fb03a39 commit 7717121
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -208,7 +208,7 @@ public void setStepFunction(BiFunction<Integer, Integer, Integer> stepFunction)
* @param forward true gets the column to the right, false the column to the left of the current column
* @return
*/
private void editNext(boolean forward) {
protected void editNext(boolean forward) {
List<TableColumn<S, ?>> columns = new ArrayList<>();
for (TableColumn<S, ?> column : getTableView().getColumns()) {
columns.addAll(getLeaves(column));
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -232,7 +232,7 @@ public void setStepFunction(BiFunction<Integer, Integer, Integer> stepFunction)
* @param forward true gets the column to the right, false the column to the left of the current column
* @return
*/
private void editNext(boolean forward) {
protected void editNext(boolean forward) {
List<TreeTableColumn<S, ?>> columns = new ArrayList<>();
for (TreeTableColumn<S, ?> column : getTreeTableView().getColumns()) {
columns.addAll(getLeaves(column));
Expand Down

0 comments on commit 7717121

Please sign in to comment.