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-vfs.git


The following commit(s) were added to refs/heads/master by this push:
     new f1b47dd3 Simplify
f1b47dd3 is described below

commit f1b47dd3ef6e8d29bf29d47b4849f6fea73a52b0
Author: Gary Gregory <garydgreg...@gmail.com>
AuthorDate: Fri Feb 9 18:19:28 2024 -0500

    Simplify
---
 .../main/java/org/apache/commons/vfs2/provider/AbstractFileSystem.java  | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git 
a/commons-vfs2/src/main/java/org/apache/commons/vfs2/provider/AbstractFileSystem.java
 
b/commons-vfs2/src/main/java/org/apache/commons/vfs2/provider/AbstractFileSystem.java
index 124bfd20..3d0ca8e1 100644
--- 
a/commons-vfs2/src/main/java/org/apache/commons/vfs2/provider/AbstractFileSystem.java
+++ 
b/commons-vfs2/src/main/java/org/apache/commons/vfs2/provider/AbstractFileSystem.java
@@ -95,7 +95,7 @@ public abstract class AbstractFileSystem extends 
AbstractVfsComponent implements
     /**
      * open streams counter for this file system
      */
-    private final AtomicInteger openStreams = new AtomicInteger(0);
+    private final AtomicInteger openStreams = new AtomicInteger();
 
     /** Only provided for Serializable subclasses. */
     AbstractFileSystem() {

Reply via email to