[hornetq-commits] JBoss hornetq SVN: r10503 - branches/Branch_2_2_EAP/tests/src/org/hornetq/tests/util.

do-not-reply at jboss.org do-not-reply at jboss.org
Wed Apr 13 16:59:23 EDT 2011


Author: clebert.suconic at jboss.com
Date: 2011-04-13 16:59:23 -0400 (Wed, 13 Apr 2011)
New Revision: 10503

Modified:
   branches/Branch_2_2_EAP/tests/src/org/hornetq/tests/util/UnitTestCase.java
Log:
just a tweak

Modified: branches/Branch_2_2_EAP/tests/src/org/hornetq/tests/util/UnitTestCase.java
===================================================================
--- branches/Branch_2_2_EAP/tests/src/org/hornetq/tests/util/UnitTestCase.java	2011-04-13 20:57:56 UTC (rev 10502)
+++ branches/Branch_2_2_EAP/tests/src/org/hornetq/tests/util/UnitTestCase.java	2011-04-13 20:59:23 UTC (rev 10503)
@@ -791,11 +791,11 @@
 
    /** It validates a Bean (POJO) using simple setters and getters with random values.
     *  You can pass a list of properties to be ignored, as some properties will have a pre-defined domain (not being possible to use random-values on them) */
-   protected void validateGettersAndSetters(final Object pojo, final String... IgnoredProperties) throws Exception
+   protected void validateGettersAndSetters(final Object pojo, final String... ignoredProperties) throws Exception
    {
       HashSet<String> ignoreSet = new HashSet<String>();
 
-      for (String ignore : IgnoredProperties)
+      for (String ignore : ignoredProperties)
       {
          ignoreSet.add(ignore);
       }



More information about the hornetq-commits mailing list