Skip to content

Commit

Permalink
Patch up formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
holly-cummins committed Jul 30, 2024
1 parent 09c62ba commit 66b9337
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/java/org/kohsuke/github/HttpException.java
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ public class HttpException extends GHIOException {
* @see HttpURLConnection#getResponseMessage() HttpURLConnection#getResponseMessage()
*/
public HttpException(String message, int responseCode, String responseMessage, String url) {
super(message + " (response code: " + responseCode+ ")");
super(message + " (response code: " + responseCode + ")");
this.responseCode = responseCode;
this.responseMessage = responseMessage;
this.url = url;
Expand Down

0 comments on commit 66b9337

Please sign in to comment.