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 b99d0cbb Format tweaks b99d0cbb is described below commit b99d0cbb1c7250fd435883c0e0e6ac25fa6ecd81 Author: Gary Gregory <garydgreg...@gmail.com> AuthorDate: Sun Apr 28 17:49:33 2024 -0400 Format tweaks --- src/main/java/org/apache/commons/beanutils2/BeanIntrospector.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/main/java/org/apache/commons/beanutils2/BeanIntrospector.java b/src/main/java/org/apache/commons/beanutils2/BeanIntrospector.java index 12bfefbe..58653232 100644 --- a/src/main/java/org/apache/commons/beanutils2/BeanIntrospector.java +++ b/src/main/java/org/apache/commons/beanutils2/BeanIntrospector.java @@ -36,6 +36,7 @@ import java.beans.IntrospectionException; * @since 1.9 */ public interface BeanIntrospector { + /** * Performs introspection on a Java class. The current class to be inspected * can be queried from the passed in {@code IntrospectionContext} @@ -47,6 +48,5 @@ public interface BeanIntrospector { * the introspection request * @throws IntrospectionException if an error occurs during introspection */ - void introspect(IntrospectionContext icontext) - throws IntrospectionException; + void introspect(IntrospectionContext icontext) throws IntrospectionException; }