From 7c7b9d023cd466c1771068badc020dab36beb553 Mon Sep 17 00:00:00 2001 From: Endi Sukma Dewata Date: Thu, 5 Apr 2012 14:49:11 -0500 Subject: Removed whitespaces from Java code. Whitespaces in Java code have been removed with the following command: find . -not -path .git -name *.java -exec sed -i 's/[[:blank:]]\+$//' {} \; Ticket #134 --- base/silent/src/com/netscape/pkisilent/common/CMSLDAP.java | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'base/silent/src/com/netscape/pkisilent/common/CMSLDAP.java') diff --git a/base/silent/src/com/netscape/pkisilent/common/CMSLDAP.java b/base/silent/src/com/netscape/pkisilent/common/CMSLDAP.java index 91a273df6..c74cd94c6 100644 --- a/base/silent/src/com/netscape/pkisilent/common/CMSLDAP.java +++ b/base/silent/src/com/netscape/pkisilent/common/CMSLDAP.java @@ -426,7 +426,7 @@ public class CMSLDAP { LDAPAttribute cfile = new LDAPAttribute("nscertfile", "alias/"); LDAPAttribute cauth = new LDAPAttribute("nssslclientauth", "allowed"); - // conn.delete("cn=RSA,cn=encryption,cn=config"); + // conn.delete("cn=RSA,cn=encryption,cn=config"); mods.add(LDAPModification.REPLACE, ssl3); mods.add(LDAPModification.DELETE, ssl3ciphers); @@ -503,7 +503,7 @@ public class CMSLDAP { i--; } - // conn.delete("cn=RSA,cn=encryption,cn=config"); + // conn.delete("cn=RSA,cn=encryption,cn=config"); try { conn.search( "cn=RSA,cn=encryption,cn=config", searchScope, null, @@ -573,7 +573,7 @@ public class CMSLDAP { DataInputStream dis = new DataInputStream(fis); byte[] bytes = new byte[dis.available()]; - dis.readFully(bytes); + dis.readFully(bytes); // bytes=s.getBytes(); */ -- cgit