Skip to content

Commit

Permalink
Remove debug println from computePrefHeight method
Browse files Browse the repository at this point in the history
Debugging output was mistakenly left in the computePrefHeight method. This commit removes the unnecessary println statement to clean up the code and avoid unwanted console output.
  • Loading branch information
dlemmermann committed Dec 10, 2024
1 parent 8cf3ba3 commit 930021c
Showing 1 changed file with 0 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -130,7 +130,6 @@ private Node wrapInScrollPane(Node node) {

@Override
protected double computePrefHeight(double width, double topInset, double rightInset, double bottomInset, double leftInset) {
System.out.println("w: " + width);
return stackPane.prefHeight(width) + topInset + bottomInset;
}

Expand Down

0 comments on commit 930021c

Please sign in to comment.