You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by gg...@apache.org on 2021/07/09 21:35:19 UTC

[commons-vfs] branch master updated: Format nits.

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 b927ec8  Format nits.
b927ec8 is described below

commit b927ec8e9f934e411586c6be00e4854a45db21f3
Author: Gary Gregory <ga...@gmail.com>
AuthorDate: Fri Jul 9 17:35:15 2021 -0400

    Format nits.
---
 .../main/java/org/apache/commons/vfs2/provider/local/LocalFile.java  | 5 +++--
 1 file changed, 3 insertions(+), 2 deletions(-)

diff --git a/commons-vfs2/src/main/java/org/apache/commons/vfs2/provider/local/LocalFile.java b/commons-vfs2/src/main/java/org/apache/commons/vfs2/provider/local/LocalFile.java
index d9f6c1d..a55f39b 100644
--- a/commons-vfs2/src/main/java/org/apache/commons/vfs2/provider/local/LocalFile.java
+++ b/commons-vfs2/src/main/java/org/apache/commons/vfs2/provider/local/LocalFile.java
@@ -52,7 +52,7 @@ public class LocalFile extends AbstractFileObject<LocalFileSystem> {
      * @throws FileSystemException if an error occurs.
      */
     protected LocalFile(final LocalFileSystem fileSystem, final String rootFile, final AbstractFileName name)
-            throws FileSystemException {
+        throws FileSystemException {
         super(name, fileSystem);
         this.rootFile = rootFile;
     }
@@ -126,7 +126,7 @@ public class LocalFile extends AbstractFileObject<LocalFileSystem> {
      */
     @Override
     protected OutputStream doGetOutputStream(final boolean bAppend) throws Exception {
-        return Files.newOutputStream(file.toPath(),  bAppend ? StandardOpenOption.APPEND : StandardOpenOption.CREATE);
+        return Files.newOutputStream(file.toPath(), bAppend ? StandardOpenOption.APPEND : StandardOpenOption.CREATE);
     }
 
     @Override
@@ -200,6 +200,7 @@ public class LocalFile extends AbstractFileObject<LocalFileSystem> {
 
     /**
      * Determines if this file is a symbolic link.
+     * 
      * @since 2.4
      */
     @Override