Skip to content

Commit

Permalink
ClientWrapper is Closeable now
Browse files Browse the repository at this point in the history
  • Loading branch information
dmatej committed Apr 12, 2022
1 parent 2c3af69 commit be9368b
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,7 @@
import jakarta.ws.rs.core.Link;
import jakarta.ws.rs.core.UriBuilder;

import java.io.Closeable;
import java.io.IOException;
import java.net.URI;
import java.util.HashMap;
Expand All @@ -46,7 +47,7 @@
*
* @author jdlee
*/
public class ClientWrapper implements Client {
public class ClientWrapper implements Client, Closeable {
protected Client realClient;

public ClientWrapper() {
Expand Down

0 comments on commit be9368b

Please sign in to comment.