From ba878adb4b9c984bc4ca76fa74d42f307e36303f Mon Sep 17 00:00:00 2001 From: SwingGuy1024 Date: Wed, 19 Apr 2023 02:53:45 -0700 Subject: [PATCH] IO-789_SymbolicLinkFileFilter_accepts_all_files,_not_just_symbolic_links -- Removed trailing spaces --- .../apache/commons/io/filefilter/SymbolicLinkFileFilter.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/main/java/org/apache/commons/io/filefilter/SymbolicLinkFileFilter.java b/src/main/java/org/apache/commons/io/filefilter/SymbolicLinkFileFilter.java index 772fa582500..05d55bcf9b8 100644 --- a/src/main/java/org/apache/commons/io/filefilter/SymbolicLinkFileFilter.java +++ b/src/main/java/org/apache/commons/io/filefilter/SymbolicLinkFileFilter.java @@ -90,7 +90,7 @@ public SymbolicLinkFileFilter(final FileVisitResult onAccept, final FileVisitRes * Checks to see if the file is a symbolic link. * * @param file the File to check - * @return true if the file exists and is a symbolic link to either another file or a directory, + * @return true if the file exists and is a symbolic link to either another file or a directory, * false otherwise. */ @Override @@ -113,7 +113,7 @@ public FileVisitResult accept(final Path path, final BasicFileAttributes attribu * Package access, so the unit test may override to mock it. To * facilitate unit testing, all calls to test if the file is a symbolic should go * through this method. (See the unit test for why.) - * + * * @param filePath The filePath to test * @return true if the file exists and is a symbolic link to either a file or directory, false otherwise. */