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 273406a Javadoc. 273406a is described below commit 273406a5bd8713a0216102293d6c2886ddc08690 Author: Gary Gregory <gardgreg...@gmail.com> AuthorDate: Thu Jul 30 10:33:57 2020 -0400 Javadoc. --- .../commons/io/FileUtilsCopyDirectoryToDirectoryTestCase.java | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/src/test/java/org/apache/commons/io/FileUtilsCopyDirectoryToDirectoryTestCase.java b/src/test/java/org/apache/commons/io/FileUtilsCopyDirectoryToDirectoryTestCase.java index 22786c2..225082b 100644 --- a/src/test/java/org/apache/commons/io/FileUtilsCopyDirectoryToDirectoryTestCase.java +++ b/src/test/java/org/apache/commons/io/FileUtilsCopyDirectoryToDirectoryTestCase.java @@ -117,6 +117,13 @@ public class FileUtilsCopyDirectoryToDirectoryTestCase { assertAcl(sourcePath, destPath); } + /** + * Gets a a file attribute view. + * + * @param sourcePath the path to the file. + * @return a file attribute view of the specified type, or null ifthe attribute view type is not available. + * @throws IOException if an I/O error occurs. + */ private List<AclEntry> getAclEntryList(final Path sourcePath) throws IOException { final AclFileAttributeView fileAttributeView = Files.getFileAttributeView(sourcePath, AclFileAttributeView.class);