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
+3Lines changed: 3 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -53,6 +53,9 @@ The <action> type attribute can be add,update,fix,remove.
53
53
<actiondev="ggregory"type="add"due-to="strangelookingnerd, Gary Gregory">FileUtils#byteCountToDisplaySize() supports Zettabyte, Yottabyte, Ronnabyte and Quettabyte #763.</action>
54
54
<actiondev="ggregory"type="add"due-to="strangelookingnerd, Gary Gregory">Add org.apache.commons.io.FileUtils.ONE_RB #763.</action>
55
55
<actiondev="ggregory"type="add"due-to="strangelookingnerd, Gary Gregory">Add org.apache.commons.io.FileUtils.ONE_QB #763.</action>
* A Proxy stream which acts as expected, that is it passes the method
28
-
* calls on to the proxied stream and doesn't change which methods are
29
-
* being called. It is an alternative base class to FilterOutputStream
30
-
* to increase reusability.
28
+
* A Proxy stream which acts as expected, that is it passes the method calls on to the proxied stream and doesn't change which methods are being called. It is
29
+
* an alternative base class to FilterOutputStream to increase reusability.
31
30
* <p>
32
-
* See the protected methods for ways in which a subclass can easily decorate
33
-
* a stream with custom pre-, post- or error processing functionality.
31
+
* See the protected methods for ways in which a subclass can easily decorate a stream with custom pre-, post- or error processing functionality.
// the delegate is stored in a protected superclass variable named 'out'
91
88
super(delegate);
92
89
}
93
90
94
91
/**
95
-
* Invoked by the write methods after the proxied call has returned
96
-
* successfully. The number of bytes written (1 for the
97
-
* {@link #write(int)} method, buffer length for {@link #write(byte[])},
98
-
* etc.) is given as an argument.
92
+
* Invoked by the write methods after the proxied call has returned successfully. The number of bytes written (1 for the {@link #write(int)} method, buffer
93
+
* length for {@link #write(byte[])}, etc.) is given as an argument.
99
94
* <p>
100
-
* Subclasses can override this method to add common post-processing
101
-
* functionality without having to override all the write methods.
102
-
* The default implementation does nothing.
95
+
* Subclasses can override this method to add common post-processing functionality without having to override all the write methods. The default
0 commit comments