[jboss-cvs] JBossAS SVN: r59597 - branches/Branch_4_0/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:07 EST 2007


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

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

Modified: branches/Branch_4_0/testsuite/src/main/org/jboss/test/util/test/PropertyEditorsUnitTestCase.java
===================================================================
--- branches/Branch_4_0/testsuite/src/main/org/jboss/test/util/test/PropertyEditorsUnitTestCase.java	2007-01-12 12:12:31 UTC (rev 59596)
+++ branches/Branch_4_0/testsuite/src/main/org/jboss/test/util/test/PropertyEditorsUnitTestCase.java	2007-01-12 12:13:04 UTC (rev 59597)
@@ -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