Remove debug code

This commit is contained in:
Andrea Cavalli 2023-01-24 16:14:19 +01:00
parent 12cd93f7c1
commit 69951d5a2d
1 changed files with 2 additions and 6 deletions

View File

@ -20,6 +20,7 @@ import jakarta.ws.rs.core.MediaType;
import jakarta.ws.rs.core.MultivaluedMap;
import jakarta.ws.rs.core.Response;
import java.io.StringReader;
import java.lang.System.Logger.Level;
import java.net.InetAddress;
import java.net.UnknownHostException;
import java.util.ArrayList;
@ -102,12 +103,7 @@ public class APIClient {
}
}
}
try {
return webTarget.request(MediaType.APPLICATION_JSON);
} catch (Exception ex) {
ex.printStackTrace();
throw ex;
}
return webTarget.request(MediaType.APPLICATION_JSON);
}
public Invocation.Builder get(String path) {