-
Notifications
You must be signed in to change notification settings - Fork 2
Version 0.0.2 #15
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Version 0.0.2 #15
Conversation
fix tests
| package org.openapitools.client.model; | ||
|
|
||
| import java.util.Objects; | ||
| import java.util.*; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I would only bring in what u need - setup ur intellij code style to not do this. These are massive packages in some cases
| } | ||
| } | ||
|
|
||
| if(this.tags != null){ |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
inconsistent formatting can be resolved nicely with this plugin if you wish to add.
https://github.com/diffplug/spotless/blob/main/plugin-maven/README.md
| public List<Pair> toParams() { | ||
| List<Pair> params = new ArrayList<>(); | ||
|
|
||
| if (this.accountId != null) { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
What if it is blank or whitespace?
No description provided.