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 2022/02/06 16:09:07 UTC

[commons-io] branch master updated: Drop extra whitespace.

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 02d280b  Drop extra whitespace.
02d280b is described below

commit 02d280b423051935726f65dc3c18346732ee59d2
Author: Gary Gregory <ga...@gmail.com>
AuthorDate: Sun Feb 6 11:09:04 2022 -0500

    Drop extra whitespace.
---
 src/test/java/org/apache/commons/io/file/PathUtilsTest.java | 1 -
 1 file changed, 1 deletion(-)

diff --git a/src/test/java/org/apache/commons/io/file/PathUtilsTest.java b/src/test/java/org/apache/commons/io/file/PathUtilsTest.java
index ce5a680..eb4540c 100644
--- a/src/test/java/org/apache/commons/io/file/PathUtilsTest.java
+++ b/src/test/java/org/apache/commons/io/file/PathUtilsTest.java
@@ -270,7 +270,6 @@ public class PathUtilsTest extends AbstractTempDirTest {
     @Test
     public void testNewOutputStreamNewFileInsideExistingSymlinkedDir() throws IOException {
         final Path symlinkDir = createTempSymlinkedRelativeDir();
-
         final Path file = symlinkDir.resolve("test.txt");
         assertThrowsExactly(FileAlreadyExistsException.class, () -> PathUtils.newOutputStream(file, false));
     }