-
Notifications
You must be signed in to change notification settings - Fork 10
Lists API #149
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
Lists API #149
Conversation
| public String toString() { | ||
| StringBuilder sb = new StringBuilder(); | ||
| sb.append("class BaseItem {\n"); | ||
|
|
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.
Unnecessary empty line?
| public String toString() { | ||
| StringBuilder sb = new StringBuilder(); | ||
| sb.append("class ListItemAuthor {\n"); | ||
|
|
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.
Unnecessary new line?
| return OpEnum.fromValue((String)(value)); | ||
| } | ||
| } | ||
| } @SerializedName("op") |
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.
Should probably be on a separate line
| @Override | ||
| public String toString() { | ||
| return String.valueOf(value); | ||
| } |
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.
New line
| return OpEnum.fromValue((String)(value)); | ||
| } | ||
| } | ||
| } @SerializedName("op") |
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.
Should probably be on a separate line
| public void setValue(List<ListQueryFilter> value) { | ||
| this.value = value; | ||
| } | ||
|
|
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.
More than one empty line
| public int hashCode() { | ||
| return Objects.hash(super.hashCode()); | ||
| } | ||
|
|
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.
More than one empty line
| } | ||
| return null; | ||
| } | ||
| public static class Adapter extends TypeAdapter<FieldEnum> { |
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.
Add new line above
| return FieldEnum.fromValue((String)(value)); | ||
| } | ||
| } | ||
| } @SerializedName("field") |
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.
Should probably be on a separate line
| } | ||
| } | ||
| return 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.
New line
No description provided.