This is an automated email from the ASF dual-hosted git repository.

ggregory pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/commons-digester.git


The following commit(s) were added to refs/heads/master by this push:
     new a5b4b61  Collapse multiple identical catch clauses into one.
a5b4b61 is described below

commit a5b4b61db6fcfc87a54266e65539686162629862
Author: Gary Gregory <garydgreg...@gmail.com>
AuthorDate: Fri Jan 8 10:01:48 2021 -0500

    Collapse multiple identical catch clauses into one.
---
 .../apache/commons/digester3/binder/BinderClassLoaderTestCase.java    | 4 ----
 1 file changed, 4 deletions(-)

diff --git 
a/core/src/test/java/org/apache/commons/digester3/binder/BinderClassLoaderTestCase.java
 
b/core/src/test/java/org/apache/commons/digester3/binder/BinderClassLoaderTestCase.java
index 22792a2..b75e764 100644
--- 
a/core/src/test/java/org/apache/commons/digester3/binder/BinderClassLoaderTestCase.java
+++ 
b/core/src/test/java/org/apache/commons/digester3/binder/BinderClassLoaderTestCase.java
@@ -201,10 +201,6 @@ public final class BinderClassLoaderTestCase
                 input.close();
             }
         }
-        catch ( final UnsupportedEncodingException e )
-        {
-            throw new ExceptionInInitializerError( e );
-        }
         catch ( final IOException e )
         {
             throw new ExceptionInInitializerError( e );

Reply via email to