You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by gg...@apache.org on 2020/11/21 18:50:51 UTC

[commons-configuration] branch master updated: Redundant return.

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-configuration.git


The following commit(s) were added to refs/heads/master by this push:
     new ffb85ec  Redundant return.
ffb85ec is described below

commit ffb85ec99eac4e431dddb369133b5dc91f4d8699
Author: Gary Gregory <ga...@gmail.com>
AuthorDate: Sat Nov 21 13:50:45 2020 -0500

    Redundant return.
---
 .../java/org/apache/commons/configuration2/resolver/CatalogResolver.java | 1 -
 1 file changed, 1 deletion(-)

diff --git a/src/main/java/org/apache/commons/configuration2/resolver/CatalogResolver.java b/src/main/java/org/apache/commons/configuration2/resolver/CatalogResolver.java
index e893e60..129ec3f 100644
--- a/src/main/java/org/apache/commons/configuration2/resolver/CatalogResolver.java
+++ b/src/main/java/org/apache/commons/configuration2/resolver/CatalogResolver.java
@@ -202,7 +202,6 @@ public class CatalogResolver implements EntityResolver
             catch (final Exception e)
             {
                 log.warn("Failed to create InputSource for " + resolved, e);
-                return null;
             }
         }