You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by pa...@apache.org on 2018/01/14 09:54:02 UTC

commons-io git commit: remove unnecessary semicolon.

Repository: commons-io
Updated Branches:
  refs/heads/master 9310cd69b -> 86cc77e21


remove unnecessary semicolon.


Project: http://git-wip-us.apache.org/repos/asf/commons-io/repo
Commit: http://git-wip-us.apache.org/repos/asf/commons-io/commit/86cc77e2
Tree: http://git-wip-us.apache.org/repos/asf/commons-io/tree/86cc77e2
Diff: http://git-wip-us.apache.org/repos/asf/commons-io/diff/86cc77e2

Branch: refs/heads/master
Commit: 86cc77e21e15d1750d051598296c081809d15652
Parents: 9310cd6
Author: shahab <sh...@gmail.com>
Authored: Fri Jan 12 18:26:36 2018 -0500
Committer: pascalschumacher <pa...@gmx.net>
Committed: Sun Jan 14 10:53:52 2018 +0100

----------------------------------------------------------------------
 src/main/java/org/apache/commons/io/FileSystem.java | 1 -
 1 file changed, 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/commons-io/blob/86cc77e2/src/main/java/org/apache/commons/io/FileSystem.java
----------------------------------------------------------------------
diff --git a/src/main/java/org/apache/commons/io/FileSystem.java b/src/main/java/org/apache/commons/io/FileSystem.java
index 46036c5..820f229 100644
--- a/src/main/java/org/apache/commons/io/FileSystem.java
+++ b/src/main/java/org/apache/commons/io/FileSystem.java
@@ -200,7 +200,6 @@ public enum FileSystem {
         this.maxPathLength = maxPathLength;
         this.illegalFileNameChars = Objects.requireNonNull(illegalFileNameChars, "illegalFileNameChars");
         this.reservedFileNames = Objects.requireNonNull(reservedFileNames, "reservedFileNames");
-        ;
     }
 
     /**