WojciechLuczkow
WojciechLuczkow
I use following walk-around for 2.12: Create custom deserializer ```java public class CoercionLessStringDeserializer extends StringDeserializer { @Override public String deserialize(JsonParser p, DeserializationContext ctxt) throws IOException { List forbiddenTypes = Arrays.asList(...
@Tomasito665 There is some code regarding `VALUE_NUMBER_INT`, what about `VALUE_NUMBER_FLOAT `and `VALUE_TRUE/FALSE`? Also _nullProvider is a accessible through `_findNullProvider field` - do you need to pass it to _parseString?
@cowtowncoder Thats right - this issue is regarding Integer to String coercion, but as far I remember deserializer was also doing unexpected coercion for ``` mapper.coercionConfigFor(LogicalType.Textual) .setCoercion(CoercionInputShape.Float, CoercionAction.Fail); mapper.readValue("{\"type\": 1.5}",...
Hi, I faced similiar issue, thats how I got it fixed: In popup directive add another function destroy: ``` javascript scope.destroy = function() { scope.active = false; if(tetherInit) { tether.destroy();...