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/util/src/netscape/security/acl/OwnerImpl.java | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'base/util/src/netscape/security/acl/OwnerImpl.java') diff --git a/base/util/src/netscape/security/acl/OwnerImpl.java b/base/util/src/netscape/security/acl/OwnerImpl.java index 3f47a1dd8..0e6e13e52 100644 --- a/base/util/src/netscape/security/acl/OwnerImpl.java +++ b/base/util/src/netscape/security/acl/OwnerImpl.java @@ -28,7 +28,7 @@ import java.util.Enumeration; * Class implementing the Owner interface. The * initial owner principal is configured as * part of the constructor. - * + * * @author Satish Dharmaraj */ public class OwnerImpl implements Owner { @@ -45,7 +45,7 @@ public class OwnerImpl implements Owner { * The caller principal must be a part of the owners list of the ACL in * order to invoke this method. The initial owner is configured * at ACL construction time. - * + * * @param caller the principal who is invoking this method. * @param owner The owner that should be added to the owners list. * @return true if success, false if already an owner. @@ -66,7 +66,7 @@ public class OwnerImpl implements Owner { * raised. * The caller principal must be a part of the owners list of the ACL in * order to invoke this method. - * + * * @param caller the principal who is invoking this method. * @param owner The owner to be removed from the owners list. * @return true if the owner is removed, false if the owner is not part @@ -95,7 +95,7 @@ public class OwnerImpl implements Owner { /** * returns if the given principal belongs to the owner list. - * + * * @param owner The owner to check if part of the owners list * @return true if the passed principal is in the owner list, false if not. */ -- cgit