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 e32e939 Format nit.
e32e939 is described below
commit e32e93982dbffe726652f8bde8352e096ae263f5
Author: Gary Gregory <[email protected]>
AuthorDate: Sun Nov 7 10:43:59 2021 -0500
Format nit.
---
src/test/java/org/apache/commons/io/FileCleaningTrackerTest.java | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/test/java/org/apache/commons/io/FileCleaningTrackerTest.java
b/src/test/java/org/apache/commons/io/FileCleaningTrackerTest.java
index 30d3757..438e461 100644
--- a/src/test/java/org/apache/commons/io/FileCleaningTrackerTest.java
+++ b/src/test/java/org/apache/commons/io/FileCleaningTrackerTest.java
@@ -62,7 +62,7 @@ public class FileCleaningTrackerTest {
private void pauseForDeleteToComplete(File file) {
int count = 0;
- while(file.exists() && count++ < 40) {
+ while (file.exists() && count++ < 40) {
TestUtils.sleepQuietly(500L);
file = new File(file.getPath());
}