Skip to content

Commit

Permalink
Improve Javadoc format
Browse files Browse the repository at this point in the history
  • Loading branch information
markt-asf committed Feb 7, 2025
1 parent b6e09cf commit 4a8603d
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions java/org/apache/jasper/compiler/Node.java
Original file line number Diff line number Diff line change
Expand Up @@ -1607,8 +1607,12 @@ private int makeCustomNestingLevel() {
}

/**
* A custom action is considered to have an empty body if the following holds true: - getBody() returns null, or
* - all immediate children are jsp:attribute actions, or - the action's jsp:body is empty.
* A custom action is considered to have an empty body if any of the following hold true:
* <ul>
* <li>getBody() returns null</li>
* <li>all immediate children are jsp:attribute actions</li>
* <li>the action's jsp:body is empty</li>
* </ul>
*
* @return {@code true} if this custom action has an empty body, and {@code false} otherwise.
*/
Expand Down

0 comments on commit 4a8603d

Please sign in to comment.