Author: clebert.suconic(a)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);
}
Show replies by date