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 d23f3e970949fc89a2b09ca4e8f77c945fdb04b0 Author: Gary Gregory <garydgreg...@gmail.com> AuthorDate: Wed Jan 17 10:21:00 2024 -0500 Javadoc --- src/main/java/org/apache/commons/io/FileCleaningTracker.java | 2 +- .../org/apache/commons/io/input/CharSequenceInputStream.java | 2 +- .../java/org/apache/commons/io/input/NullInputStream.java | 2 +- .../org/apache/commons/io/output/AppendableOutputStream.java | 2 +- .../java/org/apache/commons/io/output/AppendableWriter.java | 2 +- .../apache/commons/io/monitor/CollectionFileListener.java | 12 ++++++------ 6 files changed, 11 insertions(+), 11 deletions(-) diff --git a/src/main/java/org/apache/commons/io/FileCleaningTracker.java b/src/main/java/org/apache/commons/io/FileCleaningTracker.java index cd0ca864..f8e23a87 100644 --- a/src/main/java/org/apache/commons/io/FileCleaningTracker.java +++ b/src/main/java/org/apache/commons/io/FileCleaningTracker.java @@ -122,7 +122,7 @@ public class FileCleaningTracker { } /** - * Return the path. + * Gets the path. * * @return the path */ diff --git a/src/main/java/org/apache/commons/io/input/CharSequenceInputStream.java b/src/main/java/org/apache/commons/io/input/CharSequenceInputStream.java index 195244eb..aa472c2d 100644 --- a/src/main/java/org/apache/commons/io/input/CharSequenceInputStream.java +++ b/src/main/java/org/apache/commons/io/input/CharSequenceInputStream.java @@ -219,7 +219,7 @@ public class CharSequenceInputStream extends InputStream { } /** - * Return a lower bound on the number of bytes remaining in the byte stream. + * Gets a lower bound on the number of bytes remaining in the byte stream. * * @return the count of bytes that can be read without blocking (or returning EOF). * @throws IOException if an error occurs (probably not possible). diff --git a/src/main/java/org/apache/commons/io/input/NullInputStream.java b/src/main/java/org/apache/commons/io/input/NullInputStream.java index 31756bd3..4c9ad63a 100644 --- a/src/main/java/org/apache/commons/io/input/NullInputStream.java +++ b/src/main/java/org/apache/commons/io/input/NullInputStream.java @@ -153,7 +153,7 @@ public class NullInputStream extends InputStream { } /** - * Return the size this {@link InputStream} emulates. + * Gets the size this {@link InputStream} emulates. * * @return The size of the input stream to emulate. */ diff --git a/src/main/java/org/apache/commons/io/output/AppendableOutputStream.java b/src/main/java/org/apache/commons/io/output/AppendableOutputStream.java index 4500d4b7..a17c5d17 100644 --- a/src/main/java/org/apache/commons/io/output/AppendableOutputStream.java +++ b/src/main/java/org/apache/commons/io/output/AppendableOutputStream.java @@ -46,7 +46,7 @@ public class AppendableOutputStream <T extends Appendable> extends OutputStream } /** - * Return the target appendable. + * Gets the target appendable. * * @return the target appendable */ diff --git a/src/main/java/org/apache/commons/io/output/AppendableWriter.java b/src/main/java/org/apache/commons/io/output/AppendableWriter.java index 830c17e7..4835f92f 100644 --- a/src/main/java/org/apache/commons/io/output/AppendableWriter.java +++ b/src/main/java/org/apache/commons/io/output/AppendableWriter.java @@ -108,7 +108,7 @@ public class AppendableWriter <T extends Appendable> extends Writer { } /** - * Return the target appendable. + * Gets the target appendable. * * @return the target appendable */ diff --git a/src/test/java/org/apache/commons/io/monitor/CollectionFileListener.java b/src/test/java/org/apache/commons/io/monitor/CollectionFileListener.java index 81922268..a187790d 100644 --- a/src/test/java/org/apache/commons/io/monitor/CollectionFileListener.java +++ b/src/test/java/org/apache/commons/io/monitor/CollectionFileListener.java @@ -58,7 +58,7 @@ public class CollectionFileListener implements FileAlterationListener, Serializa } /** - * Return the set of changed directories. + * Gets the set of changed directories. * * @return Directories which have changed */ @@ -67,7 +67,7 @@ public class CollectionFileListener implements FileAlterationListener, Serializa } /** - * Return the set of changed files. + * Gets the set of changed files. * * @return Files which have changed */ @@ -76,7 +76,7 @@ public class CollectionFileListener implements FileAlterationListener, Serializa } /** - * Return the set of created directories. + * Gets the set of created directories. * * @return Directories which have been created */ @@ -85,7 +85,7 @@ public class CollectionFileListener implements FileAlterationListener, Serializa } /** - * Return the set of created files. + * Gets the set of created files. * * @return Files which have been created */ @@ -94,7 +94,7 @@ public class CollectionFileListener implements FileAlterationListener, Serializa } /** - * Return the set of deleted directories. + * Gets the set of deleted directories. * * @return Directories which been deleted */ @@ -103,7 +103,7 @@ public class CollectionFileListener implements FileAlterationListener, Serializa } /** - * Return the set of deleted files. + * Gets the set of deleted files. * * @return Files which been deleted */