Revision: 3707
Author: [email protected]
Date: Fri Jul 9 14:11:36 2010
Log: The forward engineering dialog needs this method to return false when
there are no conflicts or it will close the script window early.
http://code.google.com/p/power-architect/source/detail?r=3707
Modified:
/trunk/src/main/java/ca/sqlpower/architect/swingui/action/ExportDDLAction.java
=======================================
---
/trunk/src/main/java/ca/sqlpower/architect/swingui/action/ExportDDLAction.java
Fri Jul 9 08:12:54 2010
+++
/trunk/src/main/java/ca/sqlpower/architect/swingui/action/ExportDDLAction.java
Fri Jul 9 14:11:36 2010
@@ -84,7 +84,7 @@
checkErrorsAndGenerateDDL(ddlg);
}
- return Boolean.TRUE;
+ return Boolean.FALSE;
}
/**