Skip to content

Commit

Permalink
Remove debugging print statement from PagingControlsSkin.
Browse files Browse the repository at this point in the history
The `System.out.println` used for debugging column and percentage width was removed to clean up the code. This ensures no unnecessary logging is present in production.
  • Loading branch information
dlemmermann committed Dec 12, 2024
1 parent 5d6b7fd commit a6fcb7e
Showing 1 changed file with 0 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -257,8 +257,6 @@ private void updateView() {
pageButtonsGridPane.getColumnConstraints().clear();

double percentageWidth = 100d / (double) column;
System.out.println("column: " + column + ", percentage width: " + percentageWidth);

for (int i = 0; i < column; i++) {
ColumnConstraints con = new ColumnConstraints();

Expand Down

0 comments on commit a6fcb7e

Please sign in to comment.