mirror of
https://github.com/valitydev/openapi-generator.git
synced 2024-11-08 11:23:58 +00:00
remove trailing spaces in the mustache template;
This commit is contained in:
parent
87b25080c3
commit
9a7e269de1
@ -14,16 +14,16 @@ public class ApiException extends Exception {
|
||||
public int getCode() {
|
||||
return code;
|
||||
}
|
||||
|
||||
|
||||
public void setCode(int code) {
|
||||
this.code = code;
|
||||
}
|
||||
|
||||
|
||||
public String getMessage() {
|
||||
return message;
|
||||
}
|
||||
|
||||
|
||||
public void setMessage(String message) {
|
||||
this.message = message;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -28,7 +28,7 @@ git init
|
||||
# Adds the files in the local repository and stages them for commit.
|
||||
git add .
|
||||
|
||||
# Commits the tracked changes and prepares them to be pushed to a remote repository.
|
||||
# Commits the tracked changes and prepares them to be pushed to a remote repository.
|
||||
git commit -m "$release_note"
|
||||
|
||||
# Sets the new remote
|
||||
|
@ -13,4 +13,4 @@ public class HttpPatch extends HttpPost {
|
||||
public String getMethod() {
|
||||
return METHOD_PATCH;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -14,16 +14,16 @@ public class ApiException extends Exception {
|
||||
public int getCode() {
|
||||
return code;
|
||||
}
|
||||
|
||||
|
||||
public void setCode(int code) {
|
||||
this.code = code;
|
||||
}
|
||||
|
||||
|
||||
public String getMessage() {
|
||||
return message;
|
||||
}
|
||||
|
||||
|
||||
public void setMessage(String message) {
|
||||
this.message = message;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -28,7 +28,7 @@ git init
|
||||
# Adds the files in the local repository and stages them for commit.
|
||||
git add .
|
||||
|
||||
# Commits the tracked changes and prepares them to be pushed to a remote repository.
|
||||
# Commits the tracked changes and prepares them to be pushed to a remote repository.
|
||||
git commit -m "$release_note"
|
||||
|
||||
# Sets the new remote
|
||||
@ -48,4 +48,4 @@ git pull origin master
|
||||
|
||||
# Pushes (Forces) the changes in the local repository up to the remote repository
|
||||
echo "Git pushing to https://github.com/${git_user_id}/${git_repo_id}.git"
|
||||
git push origin master 2>&1 | grep -v 'To https'
|
||||
git push origin master 2>&1 | grep -v 'To https'
|
||||
|
@ -36,4 +36,4 @@ captures/
|
||||
*.iml
|
||||
|
||||
# Keystore files
|
||||
*.jks
|
||||
*.jks
|
||||
|
@ -52,7 +52,7 @@ public class {{classname}} {{#parent}}extends {{{parent}}}{{/parent}} {
|
||||
return true;{{/hasVars}}
|
||||
}
|
||||
|
||||
@Override
|
||||
@Override
|
||||
public int hashCode() {
|
||||
int result = 17;
|
||||
{{#vars}}
|
||||
|
@ -83,4 +83,4 @@ public class DeleteRequest extends Request<String> {
|
||||
|
||||
return headers;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -36,4 +36,4 @@ public class GetRequest extends StringRequest{
|
||||
|
||||
return headers;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -83,4 +83,4 @@ public class PatchRequest extends Request<String> {
|
||||
|
||||
return headers;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -83,4 +83,4 @@ public class PostRequest extends Request<String> {
|
||||
|
||||
return headers;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -83,4 +83,4 @@ public class PutRequest extends Request<String> {
|
||||
|
||||
return headers;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -52,7 +52,7 @@ public class {{classname}} {{#parent}}extends {{{parent}}}{{/parent}} {
|
||||
return true;{{/hasVars}}
|
||||
}
|
||||
|
||||
@Override
|
||||
@Override
|
||||
public int hashCode() {
|
||||
int result = 17;
|
||||
{{#vars}}
|
||||
|
@ -152,4 +152,4 @@
|
||||
<junit-version>4.8.1</junit-version>
|
||||
<httpclient-version>4.3.6</httpclient-version>
|
||||
</properties>
|
||||
</project>
|
||||
</project>
|
||||
|
@ -1 +1 @@
|
||||
rootProject.name = "{{artifactId}}"
|
||||
rootProject.name = "{{artifactId}}"
|
||||
|
Loading…
Reference in New Issue
Block a user