Skip to content

Commit

Permalink
fixed comment typo
Browse files Browse the repository at this point in the history
  • Loading branch information
ennerf committed Aug 14, 2023
1 parent c017829 commit db984fe
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -369,7 +369,7 @@ public static Optional<Chart> tryGetChartParent(Node node) {
*/
public static void registerLayoutHooks(Node node, Runnable preLayoutAction, Runnable postLayoutAction) {
AssertUtils.notNull("preLayoutAction", preLayoutAction);
AssertUtils.notNull("preLayoutAction", postLayoutAction);
AssertUtils.notNull("postLayoutAction", postLayoutAction);
node.sceneProperty().addListener((observable, oldScene, scene) -> {
// Remove from the old scene
if (oldScene != null) {
Expand Down

0 comments on commit db984fe

Please sign in to comment.