This is an automated email from the ASF dual-hosted git repository.

garydgregory pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/commons-weaver.git


The following commit(s) were added to refs/heads/master by this push:
     new 8087b46  Javadoc
8087b46 is described below

commit 8087b46d91671e65dd39fa5d91ff0300a6de6ab1
Author: Gary Gregory <[email protected]>
AuthorDate: Sun Aug 2 17:20:39 2026 -0400

    Javadoc
---
 .../main/java/org/apache/commons/weaver/model/WeaveEnvironment.java   | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git 
a/processor/src/main/java/org/apache/commons/weaver/model/WeaveEnvironment.java 
b/processor/src/main/java/org/apache/commons/weaver/model/WeaveEnvironment.java
index 0e55c56..1fcd221 100644
--- 
a/processor/src/main/java/org/apache/commons/weaver/model/WeaveEnvironment.java
+++ 
b/processor/src/main/java/org/apache/commons/weaver/model/WeaveEnvironment.java
@@ -55,7 +55,7 @@ public abstract class WeaveEnvironment {
         /**
          * Gets an {@link InputStream} for reading this {@link Resource}.
          * @return {@link InputStream}
-         * @throws IOException if unable to read
+         * @throws IOException Thrown if unable to read
          */
         public InputStream getInputStream() throws IOException {
             return classLoader.getResourceAsStream(name);
@@ -72,7 +72,7 @@ public abstract class WeaveEnvironment {
         /**
          * Gets an {@link OutputStream} for writing to this {@link Resource}.
          * @return {@link OutputStream}
-         * @throws IOException if unable to write
+         * @throws IOException Thrown if unable to write
          */
         public OutputStream getOutputStream() throws IOException {
             return WeaveEnvironment.this.getOutputStream(name);

Reply via email to