remove trailing whitespaces in java api client (#4784)

This commit is contained in:
wing328
2017-02-13 18:53:34 +08:00
committed by GitHub
parent 74da89c6ac
commit 8f2e9bce6d
7 changed files with 68 additions and 37 deletions

View File

@@ -40,13 +40,13 @@ public class ApiClient {
public ApiClient(String[] authNames) {
this();
for(String authName : authNames) {
for(String authName : authNames) {
RequestInterceptor auth;
if ("api_key".equals(authName)) {
if ("api_key".equals(authName)) {
auth = new ApiKeyAuth("header", "api_key");
} else if ("http_basic_test".equals(authName)) {
} else if ("http_basic_test".equals(authName)) {
auth = new HttpBasicAuth();
} else if ("petstore_auth".equals(authName)) {
} else if ("petstore_auth".equals(authName)) {
auth = new OAuth(OAuthFlow.implicit, "http://petstore.swagger.io/api/oauth/dialog", "", "write:pets, read:pets");
} else {
throw new RuntimeException("auth name \"" + authName + "\" not found in available auth names");