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 2009/08/10 18:24:15 UTC

svn commit: r802845 - /directory/apacheds/trunk/core/src/main/java/org/apache/directory/server/core/interceptor/InterceptorChain.java

Author: elecharny
Date: Mon Aug 10 16:24:15 2009
New Revision: 802845

URL: http://svn.apache.org/viewvc?rev=802845&view=rev
Log:
Removed a useless printStackTrace()

Modified:
    directory/apacheds/trunk/core/src/main/java/org/apache/directory/server/core/interceptor/InterceptorChain.java

Modified: directory/apacheds/trunk/core/src/main/java/org/apache/directory/server/core/interceptor/InterceptorChain.java
URL: http://svn.apache.org/viewvc/directory/apacheds/trunk/core/src/main/java/org/apache/directory/server/core/interceptor/InterceptorChain.java?rev=802845&r1=802844&r2=802845&view=diff
==============================================================================
--- directory/apacheds/trunk/core/src/main/java/org/apache/directory/server/core/interceptor/InterceptorChain.java (original)
+++ directory/apacheds/trunk/core/src/main/java/org/apache/directory/server/core/interceptor/InterceptorChain.java Mon Aug 10 16:24:15 2009
@@ -1072,7 +1072,6 @@
                     }
                     catch ( Exception ne )
                     {
-                        ne.printStackTrace();
                         throw ne;
                     }
                     catch ( Throwable e )
@@ -1202,7 +1201,6 @@
                     }
                     catch ( Throwable e )
                     {
-                        e.printStackTrace();
                         throwInterceptorException( interceptor, e );
                     }
                 }