Skip to content

Commit 8cc83d1

Browse files
committed
Fixed spacing issue.
1 parent 65cc529 commit 8cc83d1

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

samples/client/petstore/java/src/main/java/com/wordnik/client/ApiInvoker.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -125,7 +125,7 @@ else if ("DELETE".equals(method)) {
125125
throw new ApiException(500, "unknown method type " + method);
126126
}
127127
if(response.getClientResponseStatus() == ClientResponse.Status.NO_CONTENT) {
128-
return null;
128+
return null;
129129
}
130130
else if(response.getClientResponseStatus().getFamily() == Family.SUCCESSFUL) {
131131
return (String) response.getEntity(String.class);

src/main/resources/Java/apiInvoker.mustache

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -125,7 +125,7 @@ public class ApiInvoker {
125125
throw new ApiException(500, "unknown method type " + method);
126126
}
127127
if(response.getClientResponseStatus() == ClientResponse.Status.NO_CONTENT) {
128-
return null;
128+
return null;
129129
}
130130
else if(response.getClientResponseStatus().getFamily() == Family.SUCCESSFUL) {
131131
return (String) response.getEntity(String.class);

0 commit comments

Comments
 (0)