Eugen Deutsch
Eugen Deutsch
I've read #947 but I don't think it adds something to this issue. #892 led to the change of the equals method of MapEnvelope. The reason was that multiple return...
Sry, I forgot about it. 1. Guess I can't say anything new against it. 2. Not a perfect benchmark but the result is similar to what I've expected: ```java public...
I am working on a GUI library and I've already noticed that I need to reduce the number of throwaway objects.
JMapper works with Lombok. Example: ```java @Getter @Setter public class Foo { @JMap("somethingElse") private int bar; } ``` This should work with your setup. If it does, try to convert...
The dist version does work. Thanks :)
Currently I am using this workaround: ```kotlin class A { var b = ReadOnlyB() var otherB = B() } open class B {} @Schema( accessMode = Schema.AccessMode.READ_ONLY, title = "B...