Skip to content

Commit

Permalink
jdoc fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
rbri committed Oct 15, 2024
1 parent 9dce68c commit 822662c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/main/java/org/htmlunit/html/DomNode.java
Original file line number Diff line number Diff line change
Expand Up @@ -1632,7 +1632,7 @@ public void removeDomChangeListener(final DomChangeListener listener) {
* Support for reporting DOM changes. This method can be called when a node has been added, and it
* will send the appropriate {@link DomChangeEvent} to any registered {@link DomChangeListener}s.
*
* <p>Note that this method recursively calls this node's parent's {@link #fireNodeAdded(DomChangeEvent)}.</p>
* <p>Note that this method recursively calls this node's parent's {@link #fireNodeAdded(DomNode, DomNode)}.</p>
*
* @param parentNode the parent of the node that was changed
* @param addedNode the node that has been added
Expand Down Expand Up @@ -1730,7 +1730,7 @@ protected void fireCharacterDataChanged(final DomCharacterData characterData, fi
* Support for reporting DOM changes. This method can be called when a node has been deleted, and it
* will send the appropriate {@link DomChangeEvent} to any registered {@link DomChangeListener}s.
*
* <p>Note that this method recursively calls this node's parent's {@link #fireNodeDeleted(DomChangeEvent)}.</p>
* <p>Note that this method recursively calls this node's parent's {@link #fireNodeDeleted(DomNode, DomNode)}.</p>
*
* @param parentNode the parent of the node that was changed
* @param deletedNode the node that has been deleted
Expand Down

0 comments on commit 822662c

Please sign in to comment.