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 --- .../src/com/netscape/certsrv/base/ISourceConfigStore.java | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) (limited to 'base/common/src/com/netscape/certsrv/base/ISourceConfigStore.java') diff --git a/base/common/src/com/netscape/certsrv/base/ISourceConfigStore.java b/base/common/src/com/netscape/certsrv/base/ISourceConfigStore.java index eb848c54e..42637c258 100644 --- a/base/common/src/com/netscape/certsrv/base/ISourceConfigStore.java +++ b/base/common/src/com/netscape/certsrv/base/ISourceConfigStore.java @@ -27,9 +27,9 @@ import java.util.Enumeration; * An interface that represents the source that creates the configuration * store tree. Note that the tree can be built based on the information * from a text file or ldap entries. - * + * * @see com.netscape.certsrv.base.IConfigStore - * + * * @version $Revision$, $Date$ */ public interface ISourceConfigStore extends Serializable { @@ -37,7 +37,7 @@ public interface ISourceConfigStore extends Serializable { /** * Gets a property. *

- * + * * @param name The property name * @return property value */ @@ -46,7 +46,7 @@ public interface ISourceConfigStore extends Serializable { /** * Retrieves a property. *

- * + * * @param name The property name * @param value The property value */ @@ -55,7 +55,7 @@ public interface ISourceConfigStore extends Serializable { /** * Returns an enumeration of the config store's keys. *

- * + * * @return a list of keys * @see java.util.Hashtable#elements * @see java.util.Enumeration @@ -64,7 +64,7 @@ public interface ISourceConfigStore extends Serializable { /** * Reads a config store from an input stream. - * + * * @param in input stream where the properties are located * @exception IOException If an IO error occurs while loading from input. */ @@ -72,7 +72,7 @@ public interface ISourceConfigStore extends Serializable { /** * Stores this config store to the specified output stream. - * + * * @param out output stream where the properties should be serialized * @param header optional header to be serialized */ -- cgit