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 2019/05/30 20:44:47 UTC

[commons-csv] branch master updated: Camel-case name.

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 6532c22  Camel-case name.
6532c22 is described below

commit 6532c22438eef343f2903aeee7451e75a3ded176
Author: Gary Gregory <ga...@gmail.com>
AuthorDate: Thu May 30 16:44:42 2019 -0400

    Camel-case name.
---
 src/test/java/org/apache/commons/csv/CSVFileParserTest.java | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/test/java/org/apache/commons/csv/CSVFileParserTest.java b/src/test/java/org/apache/commons/csv/CSVFileParserTest.java
index 2907de0..c81ebe5 100644
--- a/src/test/java/org/apache/commons/csv/CSVFileParserTest.java
+++ b/src/test/java/org/apache/commons/csv/CSVFileParserTest.java
@@ -69,14 +69,14 @@ public class CSVFileParserTest {
     public static Collection<Object[]> generateData() {
         final List<Object[]> list = new ArrayList<>();
 
-        final FilenameFilter filenameFilter = new FilenameFilter() {
+        final FilenameFilter fileNameFilter = new FilenameFilter() {
 
             @Override
             public boolean accept(final File dir, final String name) {
                 return name.startsWith("test") && name.endsWith(".txt");
             }
         };
-        final File[] files = BASE.listFiles(filenameFilter);
+        final File[] files = BASE.listFiles(fileNameFilter);
         if (files != null) {
             for (final File f : files) {
                 list.add(new Object[] { f });