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/12/25 16:34:30 UTC

[commons-io] branch master updated: Fix formating.

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


The following commit(s) were added to refs/heads/master by this push:
     new b02b6ac  Fix formating.
b02b6ac is described below

commit b02b6ac53011a980a963cfe96b055c285e7fd2eb
Author: Gary Gregory <ga...@gmail.com>
AuthorDate: Wed Dec 25 11:34:25 2019 -0500

    Fix formating.
---
 src/main/java/org/apache/commons/io/FilenameUtils.java | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/main/java/org/apache/commons/io/FilenameUtils.java b/src/main/java/org/apache/commons/io/FilenameUtils.java
index e77a2db..bb94cc6 100644
--- a/src/main/java/org/apache/commons/io/FilenameUtils.java
+++ b/src/main/java/org/apache/commons/io/FilenameUtils.java
@@ -1494,7 +1494,7 @@ public class FilenameUtils {
             list.add(buffer.toString());
         }
 
-        return list.toArray( new String[ 0 ] );
+        return list.toArray(new String[0]);
     }
 
     /**