Skip to content

Commit

Permalink
[JENKINS-36871] Forgot to test JNLP4-plaintext
Browse files Browse the repository at this point in the history
  • Loading branch information
stephenc committed Aug 5, 2016
1 parent 2ce2f8a commit ac9bcab
Showing 1 changed file with 16 additions and 0 deletions.
Expand Up @@ -761,6 +761,22 @@ public JnlpProtocolHandler<? extends JnlpConnectionState> create(JnlpClientDatab
public String toString() {
return "JNLP4-connect";
}
},
new Factory() {
@Override
public JnlpProtocolHandler<? extends JnlpConnectionState> create(JnlpClientDatabase db,
ExecutorService svc,
IOHub selector, NioChannelHub hub,
SSLContext ctx,
boolean preferNio) {
return new JnlpProtocol4PlainHandler(db, svc, selector, preferNio);

}

@Override
public String toString() {
return "JNLP4-plaintext";
}
}
};
}
Expand Down

0 comments on commit ac9bcab

Please sign in to comment.