Skip to content

Commit 4f966c5

Browse files
author
Gary Gregory
committed
Use final; remote trailing whitespace.
1 parent a4b281b commit 4f966c5

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

src/main/java/org/apache/commons/io/FileSystem.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -233,7 +233,7 @@ private static boolean isOsNameMatch(final String osName, final String osNamePre
233233
*/
234234
FileSystem(final boolean caseSensitive, final boolean casePreserving, final int maxFileLength,
235235
final int maxPathLength, final char[] illegalFileNameChars, final String[] reservedFileNames,
236-
final boolean supportsDriveLetter, char nameSeparator) {
236+
final boolean supportsDriveLetter, final char nameSeparator) {
237237
this.maxFileNameLength = maxFileLength;
238238
this.maxPathLength = maxPathLength;
239239
this.illegalFileNameChars = Objects.requireNonNull(illegalFileNameChars, "illegalFileNameChars");
@@ -272,7 +272,7 @@ public int getMaxPathLength() {
272272
}
273273

274274
/**
275-
* Gets the name separator, '\\' on Windows, '/' on Linux.
275+
* Gets the name separator, '\\' on Windows, '/' on Linux.
276276
* @return '\\' on Windows, '/' on Linux.
277277
*
278278
* @since 2.12.0

0 commit comments

Comments
 (0)