-
Notifications
You must be signed in to change notification settings - Fork 7
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
Rm anyparam #27
base: master
Are you sure you want to change the base?
Rm anyparam #27
Conversation
@@ -38,7 +48,7 @@ public String name() { | |||
@Override | |||
public MethodSpec methodSpec() { | |||
String sanitized = sanitizeParamName(name); | |||
return MethodSpec.methodBuilder(sanitizeParamName("with" + capitalize(sanitized))) | |||
return MethodSpec.methodBuilder(sanitizeParamName("with" + capitalize(sanitized) + suffix)) |
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.
mb withForm[Name]
& withQuery[Name]
?
|
||
public AddQueryParamMethod(QueryParameter param, String name, ReqSpecField req, ApiResourceClass apiClass) { | ||
this.param = param; | ||
this.name = name; | ||
this.req = req; | ||
this.apiClass = apiClass; | ||
this.suffix = ""; |
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.
reuse new constructor
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.
ok
No description provided.