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 cc79a71 Fix Javadoc and whitespace. cc79a71 is described below commit cc79a7107c7f5063b0cb34d5388e71ad39a00a74 Author: Gary Gregory <gardgreg...@gmail.com> AuthorDate: Mon Oct 21 09:42:09 2019 -0400 Fix Javadoc and whitespace. --- .../org/apache/commons/beanutils2/BeanComparatorTestCase.java | 10 ---------- 1 file changed, 10 deletions(-) diff --git a/src/test/java/org/apache/commons/beanutils2/BeanComparatorTestCase.java b/src/test/java/org/apache/commons/beanutils2/BeanComparatorTestCase.java index df59e24..e6574d6 100644 --- a/src/test/java/org/apache/commons/beanutils2/BeanComparatorTestCase.java +++ b/src/test/java/org/apache/commons/beanutils2/BeanComparatorTestCase.java @@ -24,11 +24,8 @@ import junit.framework.TestSuite; /** - * <p> * Test Case for the BeanComparator class. - * */ - public class BeanComparatorTestCase extends TestCase { // ---------------------------------------------------- Instance Variables @@ -40,7 +37,6 @@ public class BeanComparatorTestCase extends TestCase { protected AlphaBean alphaBean1 = null; protected AlphaBean alphaBean2 = null; - // ---------------------------------------------------------- Constructors /** @@ -52,10 +48,8 @@ public class BeanComparatorTestCase extends TestCase { super(name); } - // -------------------------------------------------- Overall Test Methods - /** * Set up instance variables required by this test case. */ @@ -64,8 +58,6 @@ public class BeanComparatorTestCase extends TestCase { bean = new TestBean(); alphaBean1 = new AlphaBean("alphaBean1"); alphaBean2 = new AlphaBean("alphaBean2"); - - } @@ -86,10 +78,8 @@ public class BeanComparatorTestCase extends TestCase { alphaBean2 = null; } - // ------------------------------------------------ Individual Test Methods - /** * tests comparing two beans via their name using the default Comparator */