You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@camel.apache.org by bv...@apache.org on 2013/12/27 08:42:04 UTC

git commit: CAMEL-7098: Polished the comment.

Updated Branches:
  refs/heads/master 56acebd43 -> afca2399d


CAMEL-7098: Polished the comment.

Project: http://git-wip-us.apache.org/repos/asf/camel/repo
Commit: http://git-wip-us.apache.org/repos/asf/camel/commit/afca2399
Tree: http://git-wip-us.apache.org/repos/asf/camel/tree/afca2399
Diff: http://git-wip-us.apache.org/repos/asf/camel/diff/afca2399

Branch: refs/heads/master
Commit: afca2399df146cf7c4343d9afd6301de0a1619c1
Parents: 56acebd
Author: Babak Vahdat <bv...@apache.org>
Authored: Fri Dec 27 08:41:59 2013 +0100
Committer: Babak Vahdat <bv...@apache.org>
Committed: Fri Dec 27 08:41:59 2013 +0100

----------------------------------------------------------------------
 .../main/java/org/apache/camel/dataformat/csv/CsvDataFormat.java   | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/camel/blob/afca2399/components/camel-csv/src/main/java/org/apache/camel/dataformat/csv/CsvDataFormat.java
----------------------------------------------------------------------
diff --git a/components/camel-csv/src/main/java/org/apache/camel/dataformat/csv/CsvDataFormat.java b/components/camel-csv/src/main/java/org/apache/camel/dataformat/csv/CsvDataFormat.java
index ae172db..0172116 100644
--- a/components/camel-csv/src/main/java/org/apache/camel/dataformat/csv/CsvDataFormat.java
+++ b/components/camel-csv/src/main/java/org/apache/camel/dataformat/csv/CsvDataFormat.java
@@ -129,7 +129,7 @@ public class CsvDataFormat implements DataFormat {
             }
             return list;
         } finally {
-            // close the stream as we've loaded all the data upfront
+            // close the iterator (which would close the stream) as we've loaded all the data upfront
             IOHelper.close(iter);
         }
     }