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 9d8a62c  Remove extra whitespace.
9d8a62c is described below

commit 9d8a62c24868b2ef8fabbd079830c1d4646aef4f
Author: Gary Gregory <[email protected]>
AuthorDate: Sun Mar 20 14:35:17 2022 -0400

    Remove extra whitespace.
---
 .../src/main/java/org/apache/commons/vfs2/cache/DefaultFilesCache.java  | 2 --
 1 file changed, 2 deletions(-)

diff --git 
a/commons-vfs2/src/main/java/org/apache/commons/vfs2/cache/DefaultFilesCache.java
 
b/commons-vfs2/src/main/java/org/apache/commons/vfs2/cache/DefaultFilesCache.java
index 4284b71..19db612 100644
--- 
a/commons-vfs2/src/main/java/org/apache/commons/vfs2/cache/DefaultFilesCache.java
+++ 
b/commons-vfs2/src/main/java/org/apache/commons/vfs2/cache/DefaultFilesCache.java
@@ -73,7 +73,6 @@ public class DefaultFilesCache extends AbstractFilesCache {
             // cache for filesystem is not known => file is not cached:
             return null;
         }
-
         return files.get(name); // or null
     }
 
@@ -84,7 +83,6 @@ public class DefaultFilesCache extends AbstractFilesCache {
             files = fileSystemCache.computeIfAbsent(filesystem,
                 k -> new ConcurrentHashMap<>(INITIAL_CAPACITY, LOAD_FACTOR, 
Math.max(2, Runtime.getRuntime().availableProcessors()) / 2));
         }
-
         return files;
     }
 

Reply via email to