Author: vyemialyanchyk
Date: 2008-06-10 12:22:52 -0400 (Tue, 10 Jun 2008)
New Revision: 8688
Modified:
trunk/hibernatetools/plugins/org.hibernate.eclipse.console/src/org/hibernate/eclipse/launch/ExporterSettingsTab.java
Log:
HBX-500 - add lost spaces
Modified:
trunk/hibernatetools/plugins/org.hibernate.eclipse.console/src/org/hibernate/eclipse/launch/ExporterSettingsTab.java
===================================================================
---
trunk/hibernatetools/plugins/org.hibernate.eclipse.console/src/org/hibernate/eclipse/launch/ExporterSettingsTab.java 2008-06-10
15:54:48 UTC (rev 8687)
+++
trunk/hibernatetools/plugins/org.hibernate.eclipse.console/src/org/hibernate/eclipse/launch/ExporterSettingsTab.java 2008-06-10
16:22:52 UTC (rev 8688)
@@ -724,7 +724,7 @@
String str = (String) ef.getProperties().get("outputdir"); //$NON-NLS-1$
String msg = null;
if(str!=null) {
- msg = PathHelper.checkDirectory(str,
HibernateConsoleMessages.ExporterSettingsTab_output_directory_for +
ef.getExporterDefinition().getDescription(), false);
+ msg = PathHelper.checkDirectory(str,
HibernateConsoleMessages.ExporterSettingsTab_output_directory_for + " " +
ef.getExporterDefinition().getDescription(), false); //$NON-NLS-1$
if(msg!=null) {
updateStatus(msg);
return;
@@ -733,7 +733,7 @@
str = (String) ef.getProperties().get("template_path"); //$NON-NLS-1$
if(str!=null) {
- msg = PathHelper.checkDirectory(str,
HibernateConsoleMessages.ExporterSettingsTab_template_directory_for +
ef.getExporterDefinition().getDescription(), true);
+ msg = PathHelper.checkDirectory(str,
HibernateConsoleMessages.ExporterSettingsTab_template_directory_for + " " +
ef.getExporterDefinition().getDescription(), true); //$NON-NLS-1$
if(msg!=null) {
updateStatus(msg);
return;
Show replies by date