From a49dee3f75d6e2548e9114d9495655dd56f06973 Mon Sep 17 00:00:00 2001
From: neil_a_wilson <neil_a_wilson@localhost>
Date: Thu, 01 Mar 2007 05:18:42 +0000
Subject: [PATCH] Remove blank lines at the beginning of methods left after eliminating the debugEnter and debugConstructor calls.
---
opends/src/server/org/opends/server/extensions/TLSConnectionSecurityProvider.java | 19 -------------------
1 files changed, 0 insertions(+), 19 deletions(-)
diff --git a/opends/src/server/org/opends/server/extensions/TLSConnectionSecurityProvider.java b/opends/src/server/org/opends/server/extensions/TLSConnectionSecurityProvider.java
index 152f3ad..3846b8c 100644
--- a/opends/src/server/org/opends/server/extensions/TLSConnectionSecurityProvider.java
+++ b/opends/src/server/org/opends/server/extensions/TLSConnectionSecurityProvider.java
@@ -288,7 +288,6 @@
public void initializeConnectionSecurityProvider(ConfigEntry configEntry)
throws ConfigException, InitializationException
{
-
// Initialize default values for the connection-specific variables.
clientConnection = null;
socketChannel = null;
@@ -315,7 +314,6 @@
*/
public void finalizeConnectionSecurityProvider()
{
-
// No implementation is required.
}
@@ -328,7 +326,6 @@
*/
public String getSecurityMechanismName()
{
-
return SSL_CONTEXT_INSTANCE_NAME;
}
@@ -344,7 +341,6 @@
*/
public boolean isSecure()
{
-
// This should be considered secure.
return true;
}
@@ -372,7 +368,6 @@
SocketChannel socketChannel)
throws DirectoryException
{
-
return new TLSConnectionSecurityProvider(clientConnection, socketChannel,
this);
}
@@ -396,7 +391,6 @@
*/
public void disconnect(boolean connectionValid)
{
-
if (connectionValid)
{
try
@@ -478,7 +472,6 @@
*/
public int getClearBufferSize()
{
-
return clearBufferSize;
}
@@ -494,7 +487,6 @@
*/
public int getEncodedBufferSize()
{
-
return sslBufferSize;
}
@@ -515,8 +507,6 @@
*/
public boolean readData()
{
-
-
while (true)
{
try
@@ -698,7 +688,6 @@
*/
public boolean writeData(ByteBuffer clearData)
{
-
int originalPosition = clearData.position();
int originalLimit = clearData.limit();
int length = originalLimit - originalPosition;
@@ -986,7 +975,6 @@
*/
public String[] getEnabledProtocols()
{
-
return enabledProtocols;
}
@@ -1001,7 +989,6 @@
*/
public void setEnabledProtocols(String[] enabledProtocols)
{
-
this.enabledProtocols = enabledProtocols;
}
@@ -1014,7 +1001,6 @@
*/
public String[] getEnabledCipherSuites()
{
-
return enabledCipherSuites;
}
@@ -1028,7 +1014,6 @@
*/
public void setEnabledCipherSuites(String[] enabledCipherSuites)
{
-
this.enabledCipherSuites = enabledCipherSuites;
}
@@ -1041,7 +1026,6 @@
*/
public SSLClientAuthPolicy getSSLClientAuthPolicy()
{
-
return sslClientAuthPolicy;
}
@@ -1055,7 +1039,6 @@
*/
public void setSSLClientAuthPolicy(SSLClientAuthPolicy sslClientAuthPolicy)
{
-
this.sslClientAuthPolicy = sslClientAuthPolicy;
}
@@ -1068,7 +1051,6 @@
*/
public SSLSession getSSLSession()
{
-
return sslEngine.getSession();
}
@@ -1085,7 +1067,6 @@
*/
public Certificate[] getClientCertificateChain()
{
-
try
{
return sslEngine.getSession().getPeerCertificates();
--
Gitblit v1.10.0