michael-o commented on a change in pull request #37: URL: https://github.com/apache/maven-shared-utils/pull/37#discussion_r431869005
########## File path: src/main/java/org/apache/maven/shared/utils/io/FileUtils.java ########## @@ -2103,10 +2117,10 @@ public static boolean isSymbolicLinkForSure( @Nonnull final File file ) } /** - * @param symlink The link name. - * @param target The target. - * @return The linked file. - * @throws IOException in case of an error. + * @param symlink the link name + * @param target the target + * @return the linked file + * @throws IOException in case of an error */ @Nonnull public static File createSymbolicLink( @Nonnull File symlink, @Nonnull File target ) Review comment: What about `java.nio.file.Files.createSymbolicLink(Path, Path, FileAttribute<?>...)`? ---------------------------------------------------------------- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. For queries about this service, please contact Infrastructure at: us...@infra.apache.org