walaniam

Results 3 comments of walaniam

This issue impacts other open source project (see https://github.com/Backbase/backbase-openapi-tools/issues/600) @gracekarina @adrianhj could you please take a look on my [PR](https://github.com/swagger-api/swagger-parser/pull/1959)? Thanks

@jjjasper I'm wondering.. maybe it would be easier to always use lombok in generated code? Looks like less code to maintain in mustache templates. Have a look at this code...

@jjjasper And other thing that I spotted: Code generated with lombok: ```java @lombok.Getter @lombok.Setter @lombok.EqualsAndHashCode.Include @lombok.ToString.Include @Valid @NotNull private List lines = new ArrayList(); ``` code generated without lombok ```java...