Dmytro Barannik

Results 3 issues of Dmytro Barannik

I have next config (clipped): ``` keepclassmembers("""class mypkg.** { (...); }""") keepparameternames() ``` So to make my kotlin classes work with Jackson I need to keep all constructor parameter names,...

`getDelegateAdapter` goes through the list of adapters, but skips mentioned adapter (in this case `this` adapter). And `this` and `TypeToken.get({{.}}.class` refers to different model types. https://github.com/OpenAPITools/openapi-generator/blob/69f79fb7892948590a9ffe46754c47ddd2634be1/modules/openapi-generator/src/main/resources/Java/libraries/okhttp-gson/anyof_model.mustache#L47 This leads to getDelegateAdapter...

```java @Test public void test() { class TestClass { Map map; } var testObj = new TestClass(); testObj.map = Map.of( "field", "value", "nested", Map.of("nested-key", "nested-value") ); Schema schema = RuntimeSchema.getSchema(TestClass.class);...