Skip to content

Commit 9545eb2

Browse files
author
Alexandru Scvortov
committed
undo unintentional changes
1 parent 2a1d4c4 commit 9545eb2

File tree

1 file changed

+0
-4
lines changed

1 file changed

+0
-4
lines changed

test/src/com/rabbitmq/client/test/ssl/VerifiedConnection.java

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -54,23 +54,19 @@ public void openConnection()
5454
tmf.init(tks);
5555

5656
String p12Path = System.getProperty("p12.path");
57-
System.out.println("p12.path = " + p12Path);
5857
assertNotNull(p12Path);
5958
String p12Passwd = System.getProperty("p12.passwd");
60-
System.out.println("p12.passwd = " + p12Passwd);
6159
assertNotNull(p12Passwd);
6260
KeyStore ks = KeyStore.getInstance("PKCS12");
6361
char [] p12Password = p12Passwd.toCharArray();
6462
ks.load(new FileInputStream(p12Path), p12Password);
6563

66-
System.out.println("got here");
6764
KeyManagerFactory kmf = KeyManagerFactory.getInstance("SunX509");
6865
kmf.init(ks, p12Password);
6966

7067
SSLContext c = SSLContext.getInstance("SSLv3");
7168
c.init(kmf.getKeyManagers(), tmf.getTrustManagers(), null);
7269

73-
System.out.println("starting up connection");
7470
connectionFactory = new ConnectionFactory();
7571
connectionFactory.useSslProtocol(c);
7672
} catch (NoSuchAlgorithmException ex) {

0 commit comments

Comments
 (0)