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 a106199e Remove trailing whitespace
a106199e is described below

commit a106199e52d734ab05655144b382db272e3f2c6c
Author: Gary Gregory <garydgreg...@gmail.com>
AuthorDate: Fri Nov 10 09:37:49 2023 -0500

    Remove trailing whitespace
---
 .../apache/commons/io/file/PathUtilsContentEqualsTest.java | 14 +++++++-------
 1 file changed, 7 insertions(+), 7 deletions(-)

diff --git 
a/src/test/java/org/apache/commons/io/file/PathUtilsContentEqualsTest.java 
b/src/test/java/org/apache/commons/io/file/PathUtilsContentEqualsTest.java
index d8715fdd..696f37f9 100644
--- a/src/test/java/org/apache/commons/io/file/PathUtilsContentEqualsTest.java
+++ b/src/test/java/org/apache/commons/io/file/PathUtilsContentEqualsTest.java
@@ -167,28 +167,28 @@ public class PathUtilsContentEqualsTest {
         assertTrue(PathUtils.fileContentEquals(path1, path2));
         assertTrue(PathUtils.fileContentEquals(path2, path2));
         assertTrue(PathUtils.fileContentEquals(path2, path1));
-        
+
         // Directories
         assertThrows(IOException.class, () -> 
PathUtils.fileContentEquals(temporaryFolder.toPath(), 
temporaryFolder.toPath()));
-        
+
         // Different files
         final Path objFile1 = Paths.get(temporaryFolder.getAbsolutePath(), 
getName() + ".object");
         PathUtils.copyFile(getClass().getResource("/java/lang/Object.class"), 
objFile1);
-        
+
         final Path objFile1b = Paths.get(temporaryFolder.getAbsolutePath(), 
getName() + ".object2");
         PathUtils.copyFile(getClass().getResource("/java/lang/Object.class"), 
objFile1b);
-        
+
         final Path objFile2 = Paths.get(temporaryFolder.getAbsolutePath(), 
getName() + ".collection");
         
PathUtils.copyFile(getClass().getResource("/java/util/Collection.class"), 
objFile2);
-        
+
         assertFalse(PathUtils.fileContentEquals(objFile1, objFile2));
         assertFalse(PathUtils.fileContentEquals(objFile1b, objFile2));
         assertTrue(PathUtils.fileContentEquals(objFile1, objFile1b));
-        
+
         assertTrue(PathUtils.fileContentEquals(objFile1, objFile1));
         assertTrue(PathUtils.fileContentEquals(objFile1b, objFile1b));
         assertTrue(PathUtils.fileContentEquals(objFile2, objFile2));
-        
+
         // Equal files
         Files.createFile(path1);
         Files.createFile(path2);

Reply via email to