User: walterim
Date: 08/06/26 11:12:51
Modified: andromda-jsf2/src/main/resources/templates/jsf2/forms
formImplMacros.vm
Log:
corrected a compilation error when the form field is of type 'Time'
Revision Changes Path
1.3 +1 -1 cartridges/andromda-jsf2/src/main/resources/templates/jsf2/forms/formImplMacros.vm
Index: formImplMacros.vm
===================================================================
RCS file: /cvsroot/andromdaplugins/cartridges/andromda-jsf2/src/main/resources/templates/jsf2/forms/formImplMacros.vm,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -w -r1.2 -r1.3
--- formImplMacros.vm 30 May 2008 15:04:31 -0000 1.2
+++ formImplMacros.vm 26 Jun 2008 18:12:51 -0000 1.3
@@ -140,6 +140,6 @@
${dateFormatter}.setLenient($lenient);
this.dateTimeFormatters.put("$fieldName", $dateFormatter);
#elseif ($field.type.timeType)
- this.dateTimeFormatters.put("$fieldName", new java.text.SimpleDateFormat("$field.format");
+ this.dateTimeFormatters.put("$fieldName", new java.text.SimpleDateFormat("$field.format"));
#end
#end
|