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 a93b30c91 Javadoc
a93b30c91 is described below
commit a93b30c9181aa47ae794bd57f673d5a96914940d
Author: Gary D. Gregory <[email protected]>
AuthorDate: Sat Feb 22 16:12:53 2025 -0500
Javadoc
---
.../apache/commons/io/build/AbstractOrigin.java | 26 +++++++++++-----------
1 file changed, 13 insertions(+), 13 deletions(-)
diff --git a/src/main/java/org/apache/commons/io/build/AbstractOrigin.java
b/src/main/java/org/apache/commons/io/build/AbstractOrigin.java
index 618485a06..2d11ce1f9 100644
--- a/src/main/java/org/apache/commons/io/build/AbstractOrigin.java
+++ b/src/main/java/org/apache/commons/io/build/AbstractOrigin.java
@@ -84,7 +84,7 @@ public abstract static class AbstractRandomAccessFileOrigin<T
extends RandomAcce
* Starting from this origin, you can everything except a Path and a
File.
* </p>
*
- * @param origin The origin.
+ * @param origin The origin, not null.
*/
public AbstractRandomAccessFileOrigin(final T origin) {
super(origin);
@@ -150,7 +150,7 @@ public static class ByteArrayOrigin extends
AbstractOrigin<byte[], ByteArrayOrig
/**
* Constructs a new instance for the given origin.
*
- * @param origin The origin.
+ * @param origin The origin, not null.
*/
public ByteArrayOrigin(final byte[] origin) {
super(origin);
@@ -193,7 +193,7 @@ public static class CharSequenceOrigin extends
AbstractOrigin<CharSequence, Char
/**
* Constructs a new instance for the given origin.
*
- * @param origin The origin.
+ * @param origin The origin, not null.
*/
public CharSequenceOrigin(final CharSequence origin) {
super(origin);
@@ -258,7 +258,7 @@ public static class FileOrigin extends AbstractOrigin<File,
FileOrigin> {
/**
* Constructs a new instance for the given origin.
*
- * @param origin The origin.
+ * @param origin The origin, not null.
*/
public FileOrigin(final File origin) {
super(origin);
@@ -295,7 +295,7 @@ public static class InputStreamOrigin extends
AbstractOrigin<InputStream, InputS
/**
* Constructs a new instance for the given origin.
*
- * @param origin The origin.
+ * @param origin The origin, not null.
*/
public InputStreamOrigin(final InputStream origin) {
super(origin);
@@ -335,7 +335,7 @@ public static class IORandomAccessFileOrigin extends
AbstractRandomAccessFileOri
/**
* A {@link RandomAccessFile} origin.
*
- * @param origin The origin.
+ * @param origin The origin, not null.
*/
public IORandomAccessFileOrigin(final IORandomAccessFile origin) {
super(origin);
@@ -365,7 +365,7 @@ public static class OutputStreamOrigin extends
AbstractOrigin<OutputStream, Outp
/**
* Constructs a new instance for the given origin.
*
- * @param origin The origin.
+ * @param origin The origin, not null.
*/
public OutputStreamOrigin(final OutputStream origin) {
super(origin);
@@ -406,7 +406,7 @@ public static class PathOrigin extends AbstractOrigin<Path,
PathOrigin> {
/**
* Constructs a new instance for the given origin.
*
- * @param origin The origin.
+ * @param origin The origin, not null.
*/
public PathOrigin(final Path origin) {
super(origin);
@@ -445,7 +445,7 @@ public static class RandomAccessFileOrigin extends
AbstractRandomAccessFileOrigi
* Starting from this origin, you can everything except a Path and a
File.
* </p>
*
- * @param origin The origin.
+ * @param origin The origin, not null.
*/
public RandomAccessFileOrigin(final RandomAccessFile origin) {
super(origin);
@@ -464,7 +464,7 @@ public static class ReaderOrigin extends
AbstractOrigin<Reader, ReaderOrigin> {
/**
* Constructs a new instance for the given origin.
*
- * @param origin The origin.
+ * @param origin The origin, not null.
*/
public ReaderOrigin(final Reader origin) {
super(origin);
@@ -523,7 +523,7 @@ public static class URIOrigin extends AbstractOrigin<URI,
URIOrigin> {
/**
* Constructs a new instance for the given origin.
*
- * @param origin The origin.
+ * @param origin The origin, not null.
*/
public URIOrigin(final URI origin) {
super(origin);
@@ -565,7 +565,7 @@ public static class WriterOrigin extends
AbstractOrigin<Writer, WriterOrigin> {
/**
* Constructs a new instance for the given origin.
*
- * @param origin The origin.
+ * @param origin The origin, not null.
*/
public WriterOrigin(final Writer origin) {
super(origin);
@@ -607,7 +607,7 @@ public Writer getWriter(final Charset charset, final
OpenOption... options) thro
/**
* Constructs a new instance for subclasses.
*
- * @param origin The origin.
+ * @param origin The origin, not null.
*/
protected AbstractOrigin(final T origin) {
this.origin = Objects.requireNonNull(origin, "origin");