You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@directory.apache.org by el...@apache.org on 2017/07/12 03:39:45 UTC

svn commit: r1801673 - /directory/shared/branches/shared-value/ldap/client/api/src/main/java/org/apache/directory/ldap/client/api/LdifAnonymizer.java

Author: elecharny
Date: Wed Jul 12 03:39:44 2017
New Revision: 1801673

URL: http://svn.apache.org/viewvc?rev=1801673&view=rev
Log:
Removed an useless throws

Modified:
    directory/shared/branches/shared-value/ldap/client/api/src/main/java/org/apache/directory/ldap/client/api/LdifAnonymizer.java

Modified: directory/shared/branches/shared-value/ldap/client/api/src/main/java/org/apache/directory/ldap/client/api/LdifAnonymizer.java
URL: http://svn.apache.org/viewvc/directory/shared/branches/shared-value/ldap/client/api/src/main/java/org/apache/directory/ldap/client/api/LdifAnonymizer.java?rev=1801673&r1=1801672&r2=1801673&view=diff
==============================================================================
--- directory/shared/branches/shared-value/ldap/client/api/src/main/java/org/apache/directory/ldap/client/api/LdifAnonymizer.java (original)
+++ directory/shared/branches/shared-value/ldap/client/api/src/main/java/org/apache/directory/ldap/client/api/LdifAnonymizer.java Wed Jul 12 03:39:44 2017
@@ -358,9 +358,8 @@ public class LdifAnonymizer
      * Remove an attributeType that has to be anonymized
      *
      * @param attributeType the AttributeType that we don't want to be anonymized
-     * @throws LdapException If the attributeType cannot be removed
      */
-    public void removeAnonAttributeType( AttributeType attributeType ) throws LdapException
+    public void removeAnonAttributeType( AttributeType attributeType )
     {
         attributeAnonymizers.remove( attributeType );
     }