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-beanutils.git
The following commit(s) were added to refs/heads/master by this push: new c8bac90f Javadoc and format tweak. c8bac90f is described below commit c8bac90fc7ff2312bbd6fa91c6e0657aab415153 Author: Gary Gregory <garydgreg...@gmail.com> AuthorDate: Thu Apr 28 10:55:06 2022 -0400 Javadoc and format tweak. --- src/main/java/org/apache/commons/beanutils2/DynaClass.java | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/src/main/java/org/apache/commons/beanutils2/DynaClass.java b/src/main/java/org/apache/commons/beanutils2/DynaClass.java index 41336ccd..9aa7b6c8 100644 --- a/src/main/java/org/apache/commons/beanutils2/DynaClass.java +++ b/src/main/java/org/apache/commons/beanutils2/DynaClass.java @@ -22,9 +22,7 @@ package org.apache.commons.beanutils2; * {@code DynaBean} interface. DynaBean instances that share the same * DynaClass all have the same set of available properties, along with any * associated data types, read-only states, and write-only states.</p> - * */ - public interface DynaClass { /** @@ -74,7 +72,6 @@ public interface DynaClass { * class, an array class, a primitive type, or void; or if instantiation * fails for some other reason */ - DynaBean newInstance() - throws IllegalAccessException, InstantiationException; + DynaBean newInstance() throws IllegalAccessException, InstantiationException; }