Skip to content

Commit

Permalink
Fix typo in check null message => HttpClient.java (OpenFeign#864)
Browse files Browse the repository at this point in the history
* Fix typo in check null message => HttpClient.java

* Update Http2Client.java
  • Loading branch information
cchacin authored and velo committed Dec 21, 2018
1 parent 3c905f7 commit c8aee87
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion java11/src/main/java/feign/http2client/Http2Client.java
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ public Http2Client() {
}

public Http2Client(HttpClient client) {
this.client = Util.checkNotNull(client, "http cliet must be not unll");
this.client = Util.checkNotNull(client, "HttpClient must not be null");
}

@Override
Expand Down

0 comments on commit c8aee87

Please sign in to comment.