From 70b273cf7750d9b3405df3dcba520a7e03a30853 Mon Sep 17 00:00:00 2001 From: Tatu Saloranta Date: Sun, 14 Jun 2020 15:58:04 -0700 Subject: [PATCH] Fixed #2766 (wrong article in javadoc comment) --- src/main/java/com/fasterxml/jackson/databind/JsonNode.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/main/java/com/fasterxml/jackson/databind/JsonNode.java b/src/main/java/com/fasterxml/jackson/databind/JsonNode.java index 646d54737f..0c94ca2944 100644 --- a/src/main/java/com/fasterxml/jackson/databind/JsonNode.java +++ b/src/main/java/com/fasterxml/jackson/databind/JsonNode.java @@ -598,7 +598,7 @@ public int asInt(int defaultValue) { * and 1 (true), and Strings are parsed using default Java language integer * parsing rules. *

- * If representation cannot be converted to an long (including structured types + * If representation cannot be converted to a long (including structured types * like Objects and Arrays), * default value of 0 will be returned; no exceptions are thrown. */ @@ -612,7 +612,7 @@ public long asLong() { * and 1 (true), and Strings are parsed using default Java language integer * parsing rules. *

- * If representation cannot be converted to an long (including structured types + * If representation cannot be converted to a long (including structured types * like Objects and Arrays), * specified defaultValue will be returned; no exceptions are thrown. */