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-configuration.git
The following commit(s) were added to refs/heads/master by this push: new 05624120 Test method does not need to throw Exception 05624120 is described below commit 05624120a1d86cb3616ede155c3f285d141896ce Author: Gary Gregory <garydgreg...@gmail.com> AuthorDate: Thu Jun 16 10:55:57 2022 -0400 Test method does not need to throw Exception --- .../org/apache/commons/configuration2/beanutils/TestBeanHelper.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/test/java/org/apache/commons/configuration2/beanutils/TestBeanHelper.java b/src/test/java/org/apache/commons/configuration2/beanutils/TestBeanHelper.java index 4bf60123..b90dbed3 100644 --- a/src/test/java/org/apache/commons/configuration2/beanutils/TestBeanHelper.java +++ b/src/test/java/org/apache/commons/configuration2/beanutils/TestBeanHelper.java @@ -54,7 +54,7 @@ public class TestBeanHelper { private int createBeanCount; @Override - public Object createBean(final BeanCreationContext bcc) throws Exception { + public Object createBean(final BeanCreationContext bcc) { createBeanCount++; parameter = bcc.getParameter(); if (BeanCreationTestBean.class.equals(bcc.getBeanClass())) {