[#1373] Make SslHandshakeCompletionEvent constructor public

This commit is contained in:
Norman Maurer 2013-05-17 19:39:52 +02:00
parent 699ef0784e
commit 2a7bea2ad3

View File

@ -24,7 +24,7 @@ public final class SslHandshakeCompletionEvent {
private final Throwable cause;
SslHandshakeCompletionEvent(Throwable cause) {
public SslHandshakeCompletionEvent(Throwable cause) {
this.cause = cause;
}