Skip to content

Commit

Permalink
fix compile error
Browse files Browse the repository at this point in the history
  • Loading branch information
rbri committed Nov 10, 2024
1 parent 54e8dbb commit 285f8a8
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -386,8 +386,8 @@ public Node appendChild(final Object childObject) {
* {@inheritDoc}
*/
@Override
public Object removeChild(final Object childObject) {
final Object removedChild = super.removeChild(childObject);
public Node removeChild(final Object childObject) {
final Node removedChild = super.removeChild(childObject);
getDomNodeOrDie().getPage().clearComputedStyles(getDomNodeOrDie());
return removedChild;
}
Expand Down

0 comments on commit 285f8a8

Please sign in to comment.