Author: tomdz
Date: Mon Jul 3 14:23:11 2006
New Revision: 418854
URL: http://svn.apache.org/viewvc?rev=418854&view=rev
Log:
Made warning more readable
Modified:
db/ddlutils/trunk/src/java/org/apache/ddlutils/platform/SqlBuilder.java
Modified:
db/ddlutils/trunk/src/java/org/apache/ddlutils/platform/SqlBuilder.java
URL:
http://svn.apache.org/viewvc/db/ddlutils/trunk/src/java/org/apache/ddlutils/platform/SqlBuilder.java?rev=418854&r1=418853&r2=418854&view=diff
==============================================================================
--- db/ddlutils/trunk/src/java/org/apache/ddlutils/platform/SqlBuilder.java
(original)
+++ db/ddlutils/trunk/src/java/org/apache/ddlutils/platform/SqlBuilder.java Mon
Jul 3 14:23:11 2006
@@ -2310,8 +2310,8 @@
if (needsName)
{
- _log.warn("Encountered a foreign key in table " + table.getName()
+" that has no name." +
- "DdlUtils will use the auto-generated and shortened name
" + fkName + "instead.");
+ _log.warn("Encountered a foreign key in table " + table.getName()
+ " that has no name. " +
+ "DdlUtils will use the auto-generated and shortened name
" + fkName + " instead.");
}
return fkName;