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:21:07 UTC

[commons-csv] 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-csv.git


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

commit 4426ec81a519ed055360ab825107c8a19f8f15a4
Author: Gary Gregory <ga...@gmail.com>
AuthorDate: Sat Nov 21 12:21:02 2020 -0500

    Remove useless return.
---
 src/test/java/org/apache/commons/csv/issues/JiraCsv213Test.java | 2 --
 1 file changed, 2 deletions(-)

diff --git a/src/test/java/org/apache/commons/csv/issues/JiraCsv213Test.java b/src/test/java/org/apache/commons/csv/issues/JiraCsv213Test.java
index b612b62..ada58b7 100644
--- a/src/test/java/org/apache/commons/csv/issues/JiraCsv213Test.java
+++ b/src/test/java/org/apache/commons/csv/issues/JiraCsv213Test.java
@@ -55,8 +55,6 @@ public class JiraCsv213Test {
                 // System.out.println(parser.getRecordNumber());
                 // get only first record we don't need other's
                 parser.iterator().next(); // this fails
-
-                return;
             }
         } catch (final IOException e) {
             throw new IllegalStateException("Error while adding end channel to CSV", e);