Anton K
Results
1
issues of
Anton K
Looks like the property from sealed class is always last despite SORT_PROPERTIES_ALPHABETICALLY is set to true. ```kotlin val om = jacksonObjectMapper().apply { configure(MapperFeature.SORT_PROPERTIES_ALPHABETICALLY, true) } fun main() { om.writeValueAsString(Test(2, 1))...