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

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


The following commit(s) were added to refs/heads/1.X by this push:
     new c14f7b56 Javadoc
c14f7b56 is described below

commit c14f7b56b04630b001772fbe0b7421360e00b6c7
Author: Gary Gregory <[email protected]>
AuthorDate: Sun Aug 2 15:23:20 2026 -0400

    Javadoc
---
 src/main/java/org/apache/commons/beanutils/DynaProperty.java          | 4 ++--
 .../commons/beanutils/DynaPropertySerializationReadVersion1Test.java  | 2 +-
 2 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/src/main/java/org/apache/commons/beanutils/DynaProperty.java 
b/src/main/java/org/apache/commons/beanutils/DynaProperty.java
index 31e5c83a..af5538f1 100644
--- a/src/main/java/org/apache/commons/beanutils/DynaProperty.java
+++ b/src/main/java/org/apache/commons/beanutils/DynaProperty.java
@@ -292,7 +292,7 @@ public class DynaProperty implements Serializable {
     /**
      * Writes a class using safe encoding to workaround java 1.3 serialization 
bug.
      *
-     * @throws IOException if I/O errors occur while writing to the underlying 
stream.
+     * @throws IOException Thrown if I/O errors occur while writing to the 
underlying stream.
      */
     private void writeAnyClass(final Class<?> clazz, final ObjectOutputStream 
out) throws IOException {
         // safely write out any class
@@ -330,7 +330,7 @@ public class DynaProperty implements Serializable {
      * workaround.
      *
      * @param out Where to write.
-     * @throws IOException if I/O errors occur while writing to the underlying 
stream.
+     * @throws IOException Thrown if I/O errors occur while writing to the 
underlying stream.
      */
     private void writeObject(final ObjectOutputStream out) throws IOException {
         writeAnyClass(this.type,out);
diff --git 
a/src/test/java/org/apache/commons/beanutils/DynaPropertySerializationReadVersion1Test.java
 
b/src/test/java/org/apache/commons/beanutils/DynaPropertySerializationReadVersion1Test.java
index afb8dbca..4dcc82c2 100644
--- 
a/src/test/java/org/apache/commons/beanutils/DynaPropertySerializationReadVersion1Test.java
+++ 
b/src/test/java/org/apache/commons/beanutils/DynaPropertySerializationReadVersion1Test.java
@@ -163,7 +163,7 @@ class DynaPropertySerializationReadVersion1Test {
      * </p>
      *
      * @param args ignored.
-     * @throws IOException if any I/O error occurs.
+     * @throws IOException Thrown if any I/O error occurs.
      */
     public static void main(final String[] args) throws IOException {
         final File dir = checkDir(new File(TARGET_DIR));

Reply via email to