Michael Simons

Results 162 comments of Michael Simons

Ok, this is not obvious: ``` var json = """ { "a": "A String", "b": 1, "c": 23.42 } """; var om = JsonMapper.builder() .changeDefaultVisibility(i -> i.withCreatorVisibility(JsonAutoDetect.Visibility.NON_PRIVATE)) .build(); var z...