Skip to content

Commit

Permalink
fix compile warning
Browse files Browse the repository at this point in the history
  • Loading branch information
sjaenick committed Jul 10, 2023
1 parent 70c63e5 commit 6f5c74d
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ public class JAXRSRESTAccess implements RESTAccessI {
private volatile boolean closed = false;
private static final Logger LOG = Logger.getLogger(JAXRSRESTAccess.class.getName());

public JAXRSRESTAccess(UserI user, URI appServerURI, boolean verifySSL, Class... serializers) {
public JAXRSRESTAccess(UserI user, URI appServerURI, boolean verifySSL, Class<?>... serializers) {

SocketConfig socketConfig = SocketConfig.custom()
.setTcpNoDelay(true)
Expand Down Expand Up @@ -129,7 +129,7 @@ public JAXRSRESTAccess(UserI user, URI appServerURI, boolean verifySSL, Class...
//.useAsyncHttpEngine()
.httpEngine(engine);

for (Class clazz : serializers) {
for (Class<?> clazz : serializers) {
cb.register(clazz);
}

Expand Down

0 comments on commit 6f5c74d

Please sign in to comment.