Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorkmoore2012-03-09 20:20:46 +0000
committerkmoore2012-03-09 20:20:46 +0000
commita2740d7e8f40ee80fe2769122cd5a279662d17a5 (patch)
tree5527fca66e269f903f2f3064a388a5c4820a3690 /jpa/plugins/org.eclipse.jpt.jpa.gen
parentfb293e698fb4cb96ad6ba435d7ca29550a1337c3 (diff)
downloadwebtools.dali-a2740d7e8f40ee80fe2769122cd5a279662d17a5.tar.gz
webtools.dali-a2740d7e8f40ee80fe2769122cd5a279662d17a5.tar.xz
webtools.dali-a2740d7e8f40ee80fe2769122cd5a279662d17a5.zip
cleaning up formatting issues in dynamic entity generation
Diffstat (limited to 'jpa/plugins/org.eclipse.jpt.jpa.gen')
-rw-r--r--jpa/plugins/org.eclipse.jpt.jpa.gen/templates/xml_entities/column.vm4
1 files changed, 2 insertions, 2 deletions
diff --git a/jpa/plugins/org.eclipse.jpt.jpa.gen/templates/xml_entities/column.vm b/jpa/plugins/org.eclipse.jpt.jpa.gen/templates/xml_entities/column.vm
index 900bdd61d3..f2196b8324 100644
--- a/jpa/plugins/org.eclipse.jpt.jpa.gen/templates/xml_entities/column.vm
+++ b/jpa/plugins/org.eclipse.jpt.jpa.gen/templates/xml_entities/column.vm
@@ -10,7 +10,7 @@
#set ($DQ = '"')
#set ($members = "")
#if (!$column.defaultname)
- #append($members "name=$customizer.convertToXmlStringLiteral($column.name)" )
+#append($members "name=$customizer.convertToXmlStringLiteral($column.name)" )
#end
#if (!$column.insertable)
#append(${members} "insertable=${DQ}false${DQ}")
@@ -19,7 +19,7 @@
#append(${members} "updatable=${DQ}false${DQ}")
#end
#if ($members !="")
- <column $members/>
+ <column $members/>
#end
#if ($column.dataTypeLOB)
<lob/>

Back to the top