César Aguilera
César Aguilera
Do whatever you prefer, for me both options are fine.
Assuming you meant immutable object here is my answer: If we use an immutable object, each time we want to modify any of its properties we are obliged to create...
If MyObject has lots of properties, the best thing you can do is to have a Builder in order to avoid telescoping constructors. Please see: https://github.com/cxxr/better-java#the-builder-pattern
> I've also run into this problem. I want to remove the annotation from the generated code, or provide a custom annotation instead of `javax.annotation.Nullable` @CMoH did you find a...
t > > > I've also run into this problem. I want to remove the annotation from the generated code, or provide a custom annotation instead of `javax.annotation.Nullable` > >...
@CMoH, in order to fix the issue what I have done is the following: - Use `exec-maven-plugin` to run a Python script after `mvn package`. - The Python script removes...
I may try to tackle this issue