Skip to content

Commit

Permalink
Ignore UnsupportedOperationException
Browse files Browse the repository at this point in the history
  • Loading branch information
Jugen committed Aug 18, 2023
1 parent 2572cf6 commit 682242b
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -233,7 +233,8 @@ void dispose() {
getChildren().stream().filter( n -> n instanceof TextExt ).map( n -> (TextExt) n )
.forEach( t -> t.selectionFillProperty().unbind() );

getChildren().clear();
try { getChildren().clear(); }
catch ( Exception EX ) {}
}

public Paragraph<PS, SEG, S> getParagraph() {
Expand Down

0 comments on commit 682242b

Please sign in to comment.