You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by gg...@apache.org on 2023/02/09 16:17:57 UTC

[commons-beanutils] 04/06: Remove extra whitespace

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

commit 2cd4830b586d366264b245e08f0c23b962853033
Author: Gary Gregory <ga...@gmail.com>
AuthorDate: Thu Feb 9 10:06:15 2023 -0500

    Remove extra whitespace
---
 .../apache/commons/beanutils2/BeanUtilsBenchCase.java   | 17 -----------------
 1 file changed, 17 deletions(-)

diff --git a/src/test/java/org/apache/commons/beanutils2/BeanUtilsBenchCase.java b/src/test/java/org/apache/commons/beanutils2/BeanUtilsBenchCase.java
index 4b36bf55..783f5756 100644
--- a/src/test/java/org/apache/commons/beanutils2/BeanUtilsBenchCase.java
+++ b/src/test/java/org/apache/commons/beanutils2/BeanUtilsBenchCase.java
@@ -29,24 +29,17 @@ import junit.framework.TestSuite;
  * JUnit Test Case containing microbenchmarks for BeanUtils.
  *
  */
-
 public class BeanUtilsBenchCase extends TestCase {
 
-
-
     /**
      * Constructs a new instance of this test case.
      *
      * @param name Name of the test case
      */
     public BeanUtilsBenchCase(final String name) {
-
         super(name);
-
     }
 
-
-
     // Basic loop counter
     private long counter = 100000;
 
@@ -66,8 +59,6 @@ public class BeanUtilsBenchCase extends TestCase {
     // BeanUtilsBean instance to be used
     private BeanUtilsBean bu = null;
 
-
-
     /**
      * Sets up instance variables required by this test case.
      */
@@ -136,9 +127,7 @@ public class BeanUtilsBenchCase extends TestCase {
      * Creates the tests included in this test suite.
      */
     public static Test suite() {
-
         return new TestSuite(BeanUtilsBenchCase.class);
-
     }
 
     /**
@@ -146,7 +135,6 @@ public class BeanUtilsBenchCase extends TestCase {
      */
     @Override
     public void tearDown() {
-
         dynaClass = null;
         inBean = null;
         inDyna = null;
@@ -154,11 +142,8 @@ public class BeanUtilsBenchCase extends TestCase {
         outBean = null;
         outDyna = null;
         bu = null;
-
     }
 
-
-
     // Time copyProperties() from a bean
     public void testCopyPropertiesBean() throws Exception {
 
@@ -352,6 +337,4 @@ public class BeanUtilsBenchCase extends TestCase {
 
     }
 
-
-
 }