You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: src/changes/changes.xml
+10-3Lines changed: 10 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -60,13 +60,20 @@ The <action> type attribute can be add,update,fix,remove.
60
60
<actiontype="fix"dev="ggregory"due-to="Gary Gregory">All thread names are now prefixed with "commons-io-".</action>
61
61
<actiontype="fix"dev="ggregory"due-to="Kishor, Mashrur Mia"issue="IO-639">ReversedLinesFileReader does not read first line if its empty #829.</action>
62
62
<actiontype="fix"dev="ggregory"due-to="Peter De Maeyer"issue="IO-886">Fixed incorrect regular expression in PathUtils.RelativeSortedPaths.extractKey(String, String).</action>
63
-
63
+
<actiontype="fix"dev="ggregory"due-to="Martin Wiesner">Fix typos in Javadoc of FileUtils and related test classes #833.</action>
64
+
<actiontype="fix"dev="ggregory"due-to="Daniel Vega, Gary Gregory"issue="IO-887">WriterOutputStream from a builder fails on malformed or unmappable input bytes.</action>
65
+
<actiontype="fix"dev="ggregory"due-to="Gary Gregory">BoundedReader now extends ProxyReader.</action>
64
66
<!-- ADD -->
65
67
<actiontype="add"dev="ggregory"due-to="Gary Gregory, Piotr P. Karwasz">Add and use IOUtils.closeQuietlySuppress(Closeable, Throwable) #818.</action>
Copy file name to clipboardExpand all lines: src/main/java/org/apache/commons/io/FileSystem.java
+3-4Lines changed: 3 additions & 4 deletions
Original file line number
Diff line number
Diff line change
@@ -32,11 +32,10 @@
32
32
importjava.util.Objects;
33
33
34
34
/**
35
-
* Abstracts an OS' file system details, currently supporting the single use case of converting a file name String to a
36
-
* legal file name with {@link #toLegalFileName(String, char)}.
35
+
* Enumerates file system details for operating systems, currently supporting the single use case of converting a file name String to a legal file name with
36
+
* {@link #toLegalFileName(String, char)}.
37
37
* <p>
38
-
* The starting point of any operation is {@link #getCurrent()} which gets you the enum for the file system that matches
39
-
* the OS hosting the running JVM.
38
+
* The starting point of any operation is {@link #getCurrent()} which gets you the enum for the file system that matches the OS hosting the running JVM.
0 commit comments