dlr 02/04/30 11:55:33
Modified: src/templates/om ObjectWithManager.vm
Log:
Renamed class field fieldNames_ to fieldNames.
Revision Changes Path
1.6 +5 -5 jakarta-turbine-torque/src/templates/om/ObjectWithManager.vm
Index: ObjectWithManager.vm
===================================================================
RCS file: /home/cvs/jakarta-turbine-torque/src/templates/om/ObjectWithManager.vm,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -u -r1.5 -r1.6
--- ObjectWithManager.vm 29 Apr 2002 19:47:47 -0000 1.5
+++ ObjectWithManager.vm 30 Apr 2002 18:55:33 -0000 1.6
@@ -644,21 +644,21 @@
## getByName code
##
#if (!$table.isAlias() && $addGetByNameMethod)
- private static List fieldNames_ = null;
+ private static List fieldNames = null;
/**
* Generate a list of field names.
*/
public static synchronized List getFieldNames()
{
- if (fieldNames_ == null)
+ if (fieldNames == null)
{
- fieldNames_ = new ArrayList();
+ fieldNames = new ArrayList();
#foreach ($col in $table.Columns)
- fieldNames_.add("${col.JavaName}");
+ fieldNames.add("${col.JavaName}");
#end
}
- return fieldNames_;
+ return fieldNames;
}
/**
--
To unsubscribe, e-mail: <mailto:[EMAIL PROTECTED]>
For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>