remove trailing spaces in the mustache template;

This commit is contained in:
zhenjun115 2016-05-20 22:39:53 +08:00
parent 87b25080c3
commit 9a7e269de1
15 changed files with 22 additions and 22 deletions

View File

@ -14,16 +14,16 @@ public class ApiException extends Exception {
public int getCode() { public int getCode() {
return code; return code;
} }
public void setCode(int code) { public void setCode(int code) {
this.code = code; this.code = code;
} }
public String getMessage() { public String getMessage() {
return message; return message;
} }
public void setMessage(String message) { public void setMessage(String message) {
this.message = message; this.message = message;
} }
} }

View File

@ -28,7 +28,7 @@ git init
# Adds the files in the local repository and stages them for commit. # Adds the files in the local repository and stages them for commit.
git add . 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" git commit -m "$release_note"
# Sets the new remote # Sets the new remote

View File

@ -13,4 +13,4 @@ public class HttpPatch extends HttpPost {
public String getMethod() { public String getMethod() {
return METHOD_PATCH; return METHOD_PATCH;
} }
} }

View File

@ -14,16 +14,16 @@ public class ApiException extends Exception {
public int getCode() { public int getCode() {
return code; return code;
} }
public void setCode(int code) { public void setCode(int code) {
this.code = code; this.code = code;
} }
public String getMessage() { public String getMessage() {
return message; return message;
} }
public void setMessage(String message) { public void setMessage(String message) {
this.message = message; this.message = message;
} }
} }

View File

@ -28,7 +28,7 @@ git init
# Adds the files in the local repository and stages them for commit. # Adds the files in the local repository and stages them for commit.
git add . 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" git commit -m "$release_note"
# Sets the new remote # 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 # 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" 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'

View File

@ -36,4 +36,4 @@ captures/
*.iml *.iml
# Keystore files # Keystore files
*.jks *.jks

View File

@ -52,7 +52,7 @@ public class {{classname}} {{#parent}}extends {{{parent}}}{{/parent}} {
return true;{{/hasVars}} return true;{{/hasVars}}
} }
@Override @Override
public int hashCode() { public int hashCode() {
int result = 17; int result = 17;
{{#vars}} {{#vars}}

View File

@ -83,4 +83,4 @@ public class DeleteRequest extends Request<String> {
return headers; return headers;
} }
} }

View File

@ -36,4 +36,4 @@ public class GetRequest extends StringRequest{
return headers; return headers;
} }
} }

View File

@ -83,4 +83,4 @@ public class PatchRequest extends Request<String> {
return headers; return headers;
} }
} }

View File

@ -83,4 +83,4 @@ public class PostRequest extends Request<String> {
return headers; return headers;
} }
} }

View File

@ -83,4 +83,4 @@ public class PutRequest extends Request<String> {
return headers; return headers;
} }
} }

View File

@ -52,7 +52,7 @@ public class {{classname}} {{#parent}}extends {{{parent}}}{{/parent}} {
return true;{{/hasVars}} return true;{{/hasVars}}
} }
@Override @Override
public int hashCode() { public int hashCode() {
int result = 17; int result = 17;
{{#vars}} {{#vars}}

View File

@ -152,4 +152,4 @@
<junit-version>4.8.1</junit-version> <junit-version>4.8.1</junit-version>
<httpclient-version>4.3.6</httpclient-version> <httpclient-version>4.3.6</httpclient-version>
</properties> </properties>
</project> </project>

View File

@ -1 +1 @@
rootProject.name = "{{artifactId}}" rootProject.name = "{{artifactId}}"