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
commit 6f096b9fa3b078cf051e6db78828c31e2d5cd4ac Author: Gary Gregory <[email protected]> AuthorDate: Thu Sep 23 09:47:34 2021 -0400 Rename @AfterEach method. --- .../org/apache/commons/io/input/MemoryMappedFileInputStreamTest.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/test/java/org/apache/commons/io/input/MemoryMappedFileInputStreamTest.java b/src/test/java/org/apache/commons/io/input/MemoryMappedFileInputStreamTest.java index 2c23c1b..f1c8465 100644 --- a/src/test/java/org/apache/commons/io/input/MemoryMappedFileInputStreamTest.java +++ b/src/test/java/org/apache/commons/io/input/MemoryMappedFileInputStreamTest.java @@ -45,7 +45,7 @@ public class MemoryMappedFileInputStreamTest { Path tempDir; @AfterEach - void cleanup() { + void afterEach() { // Ask to run the garbage collector to clean up memory mapped buffers, // otherwise the temporary files won't be able to be removed when running on // Windows. Calling gc() is just a hint to the VM.
