Skip to content
This repository has been archived by the owner on May 14, 2020. It is now read-only.

Commit

Permalink
#14 renaming method
Browse files Browse the repository at this point in the history
  • Loading branch information
axelerod committed Oct 1, 2015
1 parent 70389f8 commit b5d6a71
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -275,10 +275,10 @@ private StringResponse getStringResponse(final HttpRequestBase httpRequest) thro

String contents = stringResponse.getContents();
logger.error(String.format("Non-successful response: \n contents: %s", contents));
throw getApiException(contents);
throw createApiException(contents);
}

private ApiException getApiException(final String contents)
private ApiException createApiException(final String contents)
{
ApiResponse<EmptyResponse> emptyResponseApiResponse = parseApiResponse(contents, new TypeToken<ApiResponseWrapper<EmptyResponse>>() {});

Expand Down

0 comments on commit b5d6a71

Please sign in to comment.