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
commit 4f966c5c6b8a814b0b50a3a479b47184d5e20834 Author: Gary Gregory <[email protected]> AuthorDate: Fri Sep 3 17:54:19 2021 -0400 Use final; remote trailing whitespace. --- src/main/java/org/apache/commons/io/FileSystem.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/main/java/org/apache/commons/io/FileSystem.java b/src/main/java/org/apache/commons/io/FileSystem.java index e53e9bc..ff13085 100644 --- a/src/main/java/org/apache/commons/io/FileSystem.java +++ b/src/main/java/org/apache/commons/io/FileSystem.java @@ -233,7 +233,7 @@ public enum FileSystem { */ FileSystem(final boolean caseSensitive, final boolean casePreserving, final int maxFileLength, final int maxPathLength, final char[] illegalFileNameChars, final String[] reservedFileNames, - final boolean supportsDriveLetter, char nameSeparator) { + final boolean supportsDriveLetter, final char nameSeparator) { this.maxFileNameLength = maxFileLength; this.maxPathLength = maxPathLength; this.illegalFileNameChars = Objects.requireNonNull(illegalFileNameChars, "illegalFileNameChars"); @@ -272,7 +272,7 @@ public enum FileSystem { } /** - * Gets the name separator, '\\' on Windows, '/' on Linux. + * Gets the name separator, '\\' on Windows, '/' on Linux. * @return '\\' on Windows, '/' on Linux. * * @since 2.12.0
