Skip to content

Commit

Permalink
Add missing closing parantheses
Browse files Browse the repository at this point in the history
  • Loading branch information
Philzen committed May 17, 2024
1 parent 61d185e commit 0c22159
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion src/main/java/com/fasterxml/jackson/databind/JsonNode.java
Original file line number Diff line number Diff line change
Expand Up @@ -314,7 +314,7 @@ public final JsonNode at(String jsonPtrExpr) {

/**
* Method that can be used to check if the node is a wrapper
* for a POJO ("Plain Old Java Object" aka "bean".
* for a POJO ("Plain Old Java Object" aka "bean").
* Returns true only for
* instances of <code>POJONode</code>.
*
Expand Down
10 changes: 5 additions & 5 deletions src/main/java/com/fasterxml/jackson/databind/ObjectMapper.java
Original file line number Diff line number Diff line change
Expand Up @@ -139,7 +139,7 @@ public class ObjectMapper
* is found, but this enumeration further limits subset of those types.
*<p>
* Since 2.4 there are special exceptions for JSON Tree model
* types (sub-types of {@link TreeNode}: default typing is never
* types (sub-types of {@link TreeNode}): default typing is never
* applied to them.
* Since 2.8(.4) additional checks are made to avoid attempts at default
* typing primitive-valued properties.
Expand Down Expand Up @@ -211,7 +211,7 @@ public enum DefaultTyping {
* as it tends to add Type Ids everywhere, even in cases
* where type can not be anything other than declared (for example
* if declared value type of a property is {@code final} -- for example,
* properties of type {@code long} (or wrapper {@code Long}).
* properties of type {@code long} or wrapper {@code Long}).
*<p>
* Note that this is rarely the option you should use as it results
* in adding type information in many places where it should not be needed:
Expand Down Expand Up @@ -543,7 +543,7 @@ public boolean useForType(JavaType t)
*/

/**
* Set of module types (as per {@link Module#getTypeId()} that have been
* Set of module types (as per {@link Module#getTypeId()}) that have been
* registered; kept track of if (and only if) {@link MapperFeature#IGNORE_DUPLICATE_MODULE_REGISTRATIONS}
* is enabled, so that duplicate registration calls can be ignored
* (to avoid adding same handlers multiple times, mostly).
Expand Down Expand Up @@ -3657,7 +3657,7 @@ public boolean canSerialize(Class<?> type, AtomicReference<Throwable> cause) {
* it could deserialize an Object of given type.
* Check is done by checking whether a registered deserializer can
* be found or built for the type; if not (either by no mapping being
* found, or through an <code>Exception</code> being thrown, false
* found, or through an <code>Exception</code> being thrown) false
* is returned.
*<p>
* <b>NOTE</b>: in case an exception is thrown during course of trying
Expand Down Expand Up @@ -4114,7 +4114,7 @@ public ObjectWriter writer(SerializationFeature first,
/**
* Factory method for constructing {@link ObjectWriter} that will
* serialize objects using specified {@link DateFormat}; or, if
* null passed, using timestamp (64-bit number.
* null passed, using timestamp (64-bit number).
*/
public ObjectWriter writer(DateFormat df) {
return _newWriter(getSerializationConfig().with(df));
Expand Down

0 comments on commit 0c22159

Please sign in to comment.