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
The following commit(s) were added to refs/heads/master by this push:
new 41886f5b Fix format nit.
41886f5b is described below
commit 41886f5b1546fc6c252ace7aef66a0870c8f10e1
Author: Gary Gregory <[email protected]>
AuthorDate: Mon Apr 4 08:21:56 2022 -0400
Fix format nit.
---
src/main/java/org/apache/commons/io/output/CountingOutputStream.java | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git
a/src/main/java/org/apache/commons/io/output/CountingOutputStream.java
b/src/main/java/org/apache/commons/io/output/CountingOutputStream.java
index 78506ebc..425780bf 100644
--- a/src/main/java/org/apache/commons/io/output/CountingOutputStream.java
+++ b/src/main/java/org/apache/commons/io/output/CountingOutputStream.java
@@ -37,7 +37,7 @@ public class CountingOutputStream extends ProxyOutputStream {
*
* @param out the OutputStream to write to
*/
- public CountingOutputStream( final OutputStream out ) {
+ public CountingOutputStream(final OutputStream out ) {
super(out);
}