소스 검색

AppServer: Stop using deprecated SslContextFactory constructor

Use SslContextFactory.Client instead, as suggested in the deprecation
javadoc.

Change-Id: I746c953d3ad549c23d0e43eb4a18fc587e924f93
Signed-off-by: David Pursehouse <david.pursehouse@gmail.com>
tags/v5.6.0.201911271000-m3
David Pursehouse 4 년 전
부모
커밋
8e356fc45e
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1
    1
      org.eclipse.jgit.junit.http/src/org/eclipse/jgit/junit/http/AppServer.java

+ 1
- 1
org.eclipse.jgit.junit.http/src/org/eclipse/jgit/junit/http/AppServer.java 파일 보기

@@ -205,7 +205,7 @@ public class AppServer {
}

private SslContextFactory createTestSslContextFactory(String hostName) {
SslContextFactory factory = new SslContextFactory(true);
SslContextFactory.Client factory = new SslContextFactory.Client(true);

String dName = "CN=,OU=,O=,ST=,L=,C=";


Loading…
취소
저장