Skip to content

Commit

Permalink
Fix JavaDoc @return description for JsonNode#booleanValue() (#4534)
Browse files Browse the repository at this point in the history
  • Loading branch information
Philzen committed May 17, 2024
1 parent e230f61 commit ac7b179
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions src/main/java/com/fasterxml/jackson/databind/JsonNode.java
Original file line number Diff line number Diff line change
Expand Up @@ -517,8 +517,7 @@ public byte[] binaryValue() throws IOException {
* literals 'true' and 'false').
* For other types, always returns false.
*
* @return Textual value this node contains, iff it is a textual
* json node (comes from JSON String value entry)
* @return Boolean value this node contains, if any; otherwise always <code>false</code>
*/
public boolean booleanValue() { return false; }

Expand Down

0 comments on commit ac7b179

Please sign in to comment.