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 17:22:24 UTC

[commons-digester] branch master updated: Remove useless 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-digester.git


The following commit(s) were added to refs/heads/master by this push:
     new 2a89327  Remove useless return.
2a89327 is described below

commit 2a89327de64b66a42aad4e9f2c6f53e833cb4155
Author: Gary Gregory <ga...@gmail.com>
AuthorDate: Sat Nov 21 12:22:20 2020 -0500

    Remove useless return.
---
 core/src/main/java/org/apache/commons/digester3/RecordedInvocation.java | 1 -
 1 file changed, 1 deletion(-)

diff --git a/core/src/main/java/org/apache/commons/digester3/RecordedInvocation.java b/core/src/main/java/org/apache/commons/digester3/RecordedInvocation.java
index 41da4a8..466124a 100644
--- a/core/src/main/java/org/apache/commons/digester3/RecordedInvocation.java
+++ b/core/src/main/java/org/apache/commons/digester3/RecordedInvocation.java
@@ -122,7 +122,6 @@ final class RecordedInvocation
         if ( !( input instanceof Object[] ) )
         {
             buffer.append( input.toString() );
-            return;
         }
         else
         {