Skip to content

Commit

Permalink
Update to vertx-core changes
Browse files Browse the repository at this point in the history
  • Loading branch information
vietj committed May 7, 2024
1 parent 74d331e commit 03f75d5
Showing 1 changed file with 0 additions and 9 deletions.
Original file line number Diff line number Diff line change
@@ -1,21 +1,18 @@
package io.vertx.ext.web.impl;

import io.vertx.codegen.annotations.Nullable;
import io.vertx.core.AsyncResult;
import io.vertx.core.Future;
import io.vertx.core.Handler;
import io.vertx.core.MultiMap;
import io.vertx.core.buffer.Buffer;
import io.vertx.core.http.ServerWebSocket;
import io.vertx.core.http.WebSocket;
import io.vertx.core.http.WebSocketBase;
import io.vertx.core.http.WebSocketFrame;
import io.vertx.core.net.HostAndPort;
import io.vertx.core.net.SocketAddress;

import javax.net.ssl.SSLPeerUnverifiedException;
import javax.net.ssl.SSLSession;
import javax.security.cert.X509Certificate;
import java.security.cert.Certificate;
import java.util.List;
import java.util.concurrent.TimeUnit;
Expand Down Expand Up @@ -267,12 +264,6 @@ public SSLSession sslSession() {
return delegate.sslSession();
}

@Override
@Deprecated
public X509Certificate[] peerCertificateChain() throws SSLPeerUnverifiedException {
return delegate.peerCertificateChain();
}

@Override
public List<Certificate> peerCertificates() throws SSLPeerUnverifiedException {
return delegate.peerCertificates();
Expand Down

0 comments on commit 03f75d5

Please sign in to comment.