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/common/src/com/netscape/certsrv/client/IDataProcessor.java | 4 ++-- .../src/com/netscape/certsrv/client/connection/IAuthenticator.java | 2 +- .../src/com/netscape/certsrv/client/connection/IConnection.java | 2 +- .../com/netscape/certsrv/client/connection/IConnectionFactory.java | 4 ++-- 4 files changed, 6 insertions(+), 6 deletions(-) (limited to 'base/common/src/com/netscape/certsrv/client') diff --git a/base/common/src/com/netscape/certsrv/client/IDataProcessor.java b/base/common/src/com/netscape/certsrv/client/IDataProcessor.java index b6784b6d2..b08fa6fde 100644 --- a/base/common/src/com/netscape/certsrv/client/IDataProcessor.java +++ b/base/common/src/com/netscape/certsrv/client/IDataProcessor.java @@ -20,7 +20,7 @@ package com.netscape.certsrv.client; /** * this class represents the callback interface between * the client package and the data storage object (data model) - * + * * @version $Revision$, $Date$ */ public interface IDataProcessor { @@ -28,7 +28,7 @@ public interface IDataProcessor { /** * This method will be callby the client package each time * data object arrived from the server side. - * + * * @param data data object expected by the interface implementor */ public void processData(Object data); diff --git a/base/common/src/com/netscape/certsrv/client/connection/IAuthenticator.java b/base/common/src/com/netscape/certsrv/client/connection/IAuthenticator.java index 0a96ee698..a2c00acba 100644 --- a/base/common/src/com/netscape/certsrv/client/connection/IAuthenticator.java +++ b/base/common/src/com/netscape/certsrv/client/connection/IAuthenticator.java @@ -19,7 +19,7 @@ package com.netscape.certsrv.client.connection; /** * An interface represents authentiator. - * + * * @version $Revision$, $Date$ */ public interface IAuthenticator { diff --git a/base/common/src/com/netscape/certsrv/client/connection/IConnection.java b/base/common/src/com/netscape/certsrv/client/connection/IConnection.java index 4a8166b02..db6ad5a85 100644 --- a/base/common/src/com/netscape/certsrv/client/connection/IConnection.java +++ b/base/common/src/com/netscape/certsrv/client/connection/IConnection.java @@ -22,7 +22,7 @@ import java.net.SocketException; /** * Interface for all connection objects. - * + * * @version $Revision$, $Date$ */ public interface IConnection { diff --git a/base/common/src/com/netscape/certsrv/client/connection/IConnectionFactory.java b/base/common/src/com/netscape/certsrv/client/connection/IConnectionFactory.java index 4506abbfa..6396f09d4 100644 --- a/base/common/src/com/netscape/certsrv/client/connection/IConnectionFactory.java +++ b/base/common/src/com/netscape/certsrv/client/connection/IConnectionFactory.java @@ -23,14 +23,14 @@ import java.net.UnknownHostException; /** * Interface for all connection factory. Primarily act as * the abstraction layer for different kind of connection factory. - * + * * @version $Revision$, $Date$ */ public interface IConnectionFactory { /** * Creates connection using the host and port - * + * * @param host The host to connect to * @param port The port to connect to * @return The created connection -- cgit