[hibernate-commits] Hibernate SVN: r12896 - branches/Branch_3_2/HibernateExt/tools/src/test/org/hibernate/tool/hbm2x.

hibernate-commits at lists.jboss.org hibernate-commits at lists.jboss.org
Fri Aug 3 13:39:19 EDT 2007


Author: max.andersen at jboss.com
Date: 2007-08-03 13:39:19 -0400 (Fri, 03 Aug 2007)
New Revision: 12896

Modified:
   branches/Branch_3_2/HibernateExt/tools/src/test/org/hibernate/tool/hbm2x/DocExporterTest.java
Log:
fix jdk 1.5 dep

Modified: branches/Branch_3_2/HibernateExt/tools/src/test/org/hibernate/tool/hbm2x/DocExporterTest.java
===================================================================
--- branches/Branch_3_2/HibernateExt/tools/src/test/org/hibernate/tool/hbm2x/DocExporterTest.java	2007-08-03 14:31:01 UTC (rev 12895)
+++ branches/Branch_3_2/HibernateExt/tools/src/test/org/hibernate/tool/hbm2x/DocExporterTest.java	2007-08-03 17:39:19 UTC (rev 12896)
@@ -36,7 +36,7 @@
 		DocExporter exporter = new DocExporter(getCfg(), getOutputDir() );
 		Properties properties = new Properties();
 		properties.put( "jdk5", "true"); // test generics
-		if(File.pathSeparator.equals(';')) { // to work around windows/jvm not seeming to respect executing just "dot"
+		if(File.pathSeparator.equals(";")) { // to work around windows/jvm not seeming to respect executing just "dot"
 			properties.put("dot.executable", System.getProperties().getProperty("dot.executable","dot.exe"));
 		} else {
 			properties.put("dot.executable", System.getProperties().getProperty("dot.executable","dot"));




More information about the hibernate-commits mailing list