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 e2fa612 Javadoc.
e2fa612 is described below
commit e2fa612820267dcc1cc110ffd311dab2fb7957e8
Author: Gary Gregory <[email protected]>
AuthorDate: Thu May 20 10:42:58 2021 -0400
Javadoc.
---
.../org/apache/commons/io/input/ObservableInputStream.java | 14 +++++++-------
1 file changed, 7 insertions(+), 7 deletions(-)
diff --git
a/src/main/java/org/apache/commons/io/input/ObservableInputStream.java
b/src/main/java/org/apache/commons/io/input/ObservableInputStream.java
index 6995edb..d57eb05 100644
--- a/src/main/java/org/apache/commons/io/input/ObservableInputStream.java
+++ b/src/main/java/org/apache/commons/io/input/ObservableInputStream.java
@@ -111,7 +111,7 @@ public class ObservableInputStream extends ProxyInputStream
{
/**
* Creates a new ObservableInputStream for the given InputStream.
*
- * @param inputStream the input stream to proxy.
+ * @param inputStream the input stream to observe.
*/
public ObservableInputStream(final InputStream inputStream) {
this(inputStream, new ArrayList<>());
@@ -120,8 +120,8 @@ public class ObservableInputStream extends ProxyInputStream
{
/**
* Creates a new ObservableInputStream for the given InputStream.
*
- * @param inputStream the input stream to proxy.
- * @param observers List of callbacks.
+ * @param inputStream the input stream to observe.
+ * @param observers List of observer callbacks.
*/
private ObservableInputStream(final InputStream inputStream, final
List<Observer> observers) {
super(inputStream);
@@ -131,8 +131,8 @@ public class ObservableInputStream extends ProxyInputStream
{
/**
* Creates a new ObservableInputStream for the given InputStream.
*
- * @param inputStream the input stream to proxy.
- * @param observers List of callbacks.
+ * @param inputStream the input stream to observe.
+ * @param observers List of observer callbacks.
* @since 2.9.0
*/
public ObservableInputStream(final InputStream inputStream, final
Observer... observers) {
@@ -142,7 +142,7 @@ public class ObservableInputStream extends ProxyInputStream
{
/**
* Adds an Observer.
*
- * @param observer the observer to add
+ * @param observer the observer to add.
*/
public void add(final Observer observer) {
observers.add(observer);
@@ -178,7 +178,7 @@ public class ObservableInputStream extends ProxyInputStream
{
/**
* Gets all currently registered observers.
*
- * @return a list of the currently registered observers
+ * @return a list of the currently registered observers.
* @since 2.9.0
*/
public List<Observer> getObservers() {