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-compress.git
The following commit(s) were added to refs/heads/master by this push: new 4653cf6d Update provenance as comment. 4653cf6d is described below commit 4653cf6dd004cea115eba287135865996ea1853f Author: Gary Gregory <garydgreg...@gmail.com> AuthorDate: Tue Aug 30 11:10:22 2022 -0400 Update provenance as comment. --- src/test/java/org/apache/commons/compress/AbstractTestCase.java | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/test/java/org/apache/commons/compress/AbstractTestCase.java b/src/test/java/org/apache/commons/compress/AbstractTestCase.java index 10e0e159..9181fffa 100644 --- a/src/test/java/org/apache/commons/compress/AbstractTestCase.java +++ b/src/test/java/org/apache/commons/compress/AbstractTestCase.java @@ -123,8 +123,9 @@ public abstract class AbstractTestCase { * Others possible. If the delete does not work, call System.gc(), * wait a little and try again. * + * Copied from FileUtils in Ant 1.8.0. + * * @return whether deletion was successful - * @since Stolen from FileUtils in Ant 1.8.0 */ public static boolean tryHardToDelete(final File f) { if (f != null && f.exists() && !f.delete()) {