[jboss-cvs] JBossAS SVN: r59598 - trunk/testsuite/src/main/org/jboss/test/util/test.

jboss-cvs-commits at lists.jboss.org jboss-cvs-commits at lists.jboss.org
Fri Jan 12 07:13:35 EST 2007


Author: dimitris at jboss.org
Date: 2007-01-12 07:13:33 -0500 (Fri, 12 Jan 2007)
New Revision: 59598

Modified:
   trunk/testsuite/src/main/org/jboss/test/util/test/PropertyEditorsUnitTestCase.java
Log:
JBAS-3617 - the static initialization block must be explicit on linux

Modified: trunk/testsuite/src/main/org/jboss/test/util/test/PropertyEditorsUnitTestCase.java
===================================================================
--- trunk/testsuite/src/main/org/jboss/test/util/test/PropertyEditorsUnitTestCase.java	2007-01-12 12:13:04 UTC (rev 59597)
+++ trunk/testsuite/src/main/org/jboss/test/util/test/PropertyEditorsUnitTestCase.java	2007-01-12 12:13:33 UTC (rev 59598)
@@ -66,7 +66,9 @@
     */
    static
    {
-      Class c = org.jboss.util.propertyeditor.PropertyEditors.class;
+      // Class c = org.jboss.util.propertyeditor.PropertyEditors.class;
+      // JBAS-3617 - on linux the above initializer doesn't work! 
+      org.jboss.util.propertyeditor.PropertyEditors.init();
    }
 
    static class StringArrayComparator implements Comparator




More information about the jboss-cvs-commits mailing list