@@ -218,10 +218,9 @@ && getClass() == UntypedObjectDeserializer.class) {
218
218
*/
219
219
@ Override
220
220
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.
225
224
return true ;
226
225
}
227
226
@@ -269,9 +268,8 @@ public Object deserialize(JsonParser p, DeserializationContext ctxt) throws IOEx
269
268
if (_numberDeserializer != null ) {
270
269
return _numberDeserializer .deserialize (p , ctxt );
271
270
}
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
275
273
if (ctxt .hasSomeOfFeatures (F_MASK_INT_COERCIONS )) {
276
274
return _coerceIntegral (p , ctxt );
277
275
}
@@ -649,10 +647,9 @@ protected Object mapObject(JsonParser p, DeserializationContext ctxt,
649
647
}
650
648
651
649
/*
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
+ /**********************************************************************
656
653
*/
657
654
658
655
/**
@@ -667,9 +664,7 @@ public static class Vanilla
667
664
668
665
public final static Vanilla std = new Vanilla ();
669
666
670
- /**
671
- * @since 2.9
672
- */
667
+ // @since 2.9
673
668
protected final boolean _nonMerging ;
674
669
675
670
public Vanilla () { this (false ); }
0 commit comments