Skip to content

Commit

Permalink
Due to large impact of making it private, SSL is now public again, bu…
Browse files Browse the repository at this point in the history
…t deprecated
  • Loading branch information
miklish committed Dec 13, 2019
1 parent b25df39 commit 228975c
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion client/src/main/java/com/networknt/client/Http2Client.java
Expand Up @@ -83,7 +83,12 @@ public class Http2Client {
.set(Options.KEEP_ALIVE, true)
.set(Options.WORKER_NAME, "Client").getMap();
public static XnioWorker WORKER;
private static XnioSsl SSL;
/**
* @deprecated As of release 1.6.11, replaced by {@link #getDefaultXnioSsl()}
* SSL is no longer statically initialized.
*/
@Deprecated
public static XnioSsl SSL;
public static final AttachmentKey<String> RESPONSE_BODY = AttachmentKey.create(String.class);

static final String TLS = "tls";
Expand Down

0 comments on commit 228975c

Please sign in to comment.