Skip to content

Commit 1d807c3

Browse files
committed
minor comment cleanup
1 parent f93fd41 commit 1d807c3

File tree

1 file changed

+9
-14
lines changed

1 file changed

+9
-14
lines changed

src/main/java/com/fasterxml/jackson/databind/deser/std/UntypedObjectDeserializer.java

Lines changed: 9 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -218,10 +218,9 @@ && getClass() == UntypedObjectDeserializer.class) {
218218
*/
219219
@Override
220220
public boolean isCachable() {
221-
/* 26-Mar-2015, tatu: With respect to [databind#735], there are concerns over
222-
* cachability. It seems like we SHOULD be safe here; but just in case there
223-
* are problems with false sharing, this may need to be revisited.
224-
*/
221+
// 26-Mar-2015, tatu: With respect to [databind#735], there are concerns over
222+
// cachability. It seems like we SHOULD be safe here; but just in case there
223+
// are problems with false sharing, this may need to be revisited.
225224
return true;
226225
}
227226

@@ -269,9 +268,8 @@ public Object deserialize(JsonParser p, DeserializationContext ctxt) throws IOEx
269268
if (_numberDeserializer != null) {
270269
return _numberDeserializer.deserialize(p, ctxt);
271270
}
272-
/* Caller may want to get all integral values returned as {@link java.math.BigInteger},
273-
* or {@link java.lang.Long} for consistency
274-
*/
271+
// Caller may want to get all integral values returned as {@link java.math.BigInteger},
272+
// or {@link java.lang.Long} for consistency
275273
if (ctxt.hasSomeOfFeatures(F_MASK_INT_COERCIONS)) {
276274
return _coerceIntegral(p, ctxt);
277275
}
@@ -649,10 +647,9 @@ protected Object mapObject(JsonParser p, DeserializationContext ctxt,
649647
}
650648

651649
/*
652-
/**********************************************************
653-
/* Separate "vanilla" implementation for common case of
654-
/* no custom deserializer overrides
655-
/**********************************************************
650+
/**********************************************************************
651+
/* Separate "vanilla" implementation for common case of no deser overrides
652+
/**********************************************************************
656653
*/
657654

658655
/**
@@ -667,9 +664,7 @@ public static class Vanilla
667664

668665
public final static Vanilla std = new Vanilla();
669666

670-
/**
671-
* @since 2.9
672-
*/
667+
// @since 2.9
673668
protected final boolean _nonMerging;
674669

675670
public Vanilla() { this(false); }

0 commit comments

Comments
 (0)