Skip to content

Commit 0d17325

Browse files
grimreapercowtowncoder
authored andcommitted
fix duplicate duplicate words in some comments
1 parent d70b9e6 commit 0d17325

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

src/main/java/com/fasterxml/jackson/databind/ObjectMapper.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@
4343
* (producing instance with default configuration); or through one of two build
4444
* methods.
4545
* First build method is the static <code>builder()</code> on exact type
46-
* and second {@link #rebuild()} method method on an existing mapper.
46+
* and second {@link #rebuild()} method on an existing mapper.
4747
* Former starts with default configuration (same as one that no-arguments constructor
4848
* created mapper has), and latter starts with configuration of the mapper it is called
4949
* on.

src/main/java/com/fasterxml/jackson/databind/deser/BeanDeserializerFactory.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -547,7 +547,7 @@ protected void addBeanProps(DeserializationContext ctxt,
547547
PropertyMetadata md = propDef.getMetadata();
548548
// 25-Oct-2016, tatu: If merging enabled, might not need setter.
549549
// We cannot quite support this with creator parameters; in theory
550-
// possibly, but right not not due to complexities of routing, so
550+
// possibly, but right not now due to complexities of routing, so
551551
// just prevent
552552
if (md.getMergeInfo() != null) {
553553
prop = constructSetterlessProperty(ctxt, beanDesc, propDef);

src/main/java/com/fasterxml/jackson/databind/ser/DefaultSerializerProvider.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -434,7 +434,7 @@ private IOException _wrapAsIOE(JsonGenerator g, Exception e) {
434434

435435
/**
436436
* The method to be called by {@link ObjectMapper} and {@link ObjectWriter}
437-
* to to expose the format of the given to to the given visitor
437+
* to expose the format of the given type to the given visitor
438438
*
439439
* @param javaType The type for which to generate format
440440
* @param visitor the visitor to accept the format

src/main/java/com/fasterxml/jackson/databind/ser/std/BeanSerializerBase.java

+2-2
Original file line numberDiff line numberDiff line change
@@ -703,7 +703,7 @@ protected final WritableTypeId _typeIdDef(TypeSerializer typeSer,
703703
*/
704704

705705
/**
706-
* Method called called when neither JSON Filter is to be applied, nor
706+
* Method called when neither JSON Filter is to be applied, nor
707707
* view-filtering. This means that all property writers are non null
708708
* and can be called directly.
709709
*
@@ -758,7 +758,7 @@ protected void _serializeFieldsNoView(Object bean, JsonGenerator gen,
758758
}
759759
}
760760
/**
761-
* Method called called when no JSON Filter is to be applied, but
761+
* Method called when no JSON Filter is to be applied, but
762762
* View filtering is in effect and so some of properties may be
763763
* nulls to check.
764764
*

0 commit comments

Comments
 (0)