dlr         02/04/30 11:52:14

  Modified:    src/templates/om Object.vm
  Log:
  Renamed class field fieldNames_ to fieldNames.
  
  Revision  Changes    Path
  1.27      +5 -5      jakarta-turbine-torque/src/templates/om/Object.vm
  
  Index: Object.vm
  ===================================================================
  RCS file: /home/cvs/jakarta-turbine-torque/src/templates/om/Object.vm,v
  retrieving revision 1.26
  retrieving revision 1.27
  diff -u -u -r1.26 -r1.27
  --- Object.vm 29 Apr 2002 19:47:47 -0000      1.26
  +++ Object.vm 30 Apr 2002 18:52:14 -0000      1.27
  @@ -637,21 +637,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]>

Reply via email to