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/base/Plugin.java | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'base/common/src/com/netscape/certsrv/base/Plugin.java') diff --git a/base/common/src/com/netscape/certsrv/base/Plugin.java b/base/common/src/com/netscape/certsrv/base/Plugin.java index 79fae88ac..c81596505 100644 --- a/base/common/src/com/netscape/certsrv/base/Plugin.java +++ b/base/common/src/com/netscape/certsrv/base/Plugin.java @@ -20,7 +20,7 @@ package com.netscape.certsrv.base; /** * This represents a generici CMS plugin. *

- * + * * @version $Revision$, $Date$ */ public class Plugin { @@ -30,7 +30,7 @@ public class Plugin { /** * Constructs a plugin. - * + * * @param id plugin implementation name * @param classPath class path */ @@ -41,7 +41,7 @@ public class Plugin { /** * Returns the plugin identifier. - * + * * @return plugin id */ public String getId() { @@ -50,7 +50,7 @@ public class Plugin { /** * Returns the plugin classpath. - * + * * @return plugin classpath */ public String getClassPath() { -- cgit