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

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

commit b858496ca2f2430bb904276f19243de269229003
Author: Gary Gregory <[email protected]>
AuthorDate: Thu Jul 25 16:03:46 2024 -0400

    Remove redundant modifiers
---
 src/main/java/org/apache/commons/beanutils/DynaClass.java | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/src/main/java/org/apache/commons/beanutils/DynaClass.java 
b/src/main/java/org/apache/commons/beanutils/DynaClass.java
index 34e94c29..f07ec23f 100644
--- a/src/main/java/org/apache/commons/beanutils/DynaClass.java
+++ b/src/main/java/org/apache/commons/beanutils/DynaClass.java
@@ -36,7 +36,7 @@ public interface DynaClass {
      *
      * @return the name of the DynaClass
      */
-    public String getName();
+    String getName();
 
 
     /**
@@ -49,7 +49,7 @@ public interface DynaClass {
      *
      * @throws IllegalArgumentException if no property name is specified
      */
-    public DynaProperty getDynaProperty(String name);
+    DynaProperty getDynaProperty(String name);
 
 
     /**
@@ -63,7 +63,7 @@ public interface DynaClass {
      *
      * @return the set of properties for this DynaClass
      */
-    public DynaProperty[] getDynaProperties();
+    DynaProperty[] getDynaProperties();
 
 
     /**
@@ -78,7 +78,7 @@ public interface DynaClass {
      *  class, an array class, a primitive type, or void; or if instantiation
      *  fails for some other reason
      */
-    public DynaBean newInstance()
+    DynaBean newInstance()
             throws IllegalAccessException, InstantiationException;
 
 

Reply via email to