You are viewing a plain text version of this content. The canonical link for it is here.
Posted to ojb-dev@db.apache.org by br...@apache.org on 2004/12/10 19:22:20 UTC

cvs commit: db-ojb/src/java/org/apache/ojb/broker/metadata DeleteProcedureDescriptor.java

brj         2004/12/10 10:22:20

  Modified:    src/java/org/apache/ojb/broker/metadata Tag: OJB_1_0_RELEASE
                        DeleteProcedureDescriptor.java
  Log:
  applied patch by vadim gritsenko
  
  Revision  Changes    Path
  No                   revision
  No                   revision
  1.7.2.1   +8 -9      db-ojb/src/java/org/apache/ojb/broker/metadata/DeleteProcedureDescriptor.java
  
  Index: DeleteProcedureDescriptor.java
  ===================================================================
  RCS file: /home/cvs/db-ojb/src/java/org/apache/ojb/broker/metadata/DeleteProcedureDescriptor.java,v
  retrieving revision 1.7
  retrieving revision 1.7.2.1
  diff -u -r1.7 -r1.7.2.1
  --- DeleteProcedureDescriptor.java	13 Jun 2004 08:26:00 -0000	1.7
  +++ DeleteProcedureDescriptor.java	10 Dec 2004 18:22:20 -0000	1.7.2.1
  @@ -44,21 +44,20 @@
       private boolean includePkFieldsOnly;
   
       //---------------------------------------------------------------
  +    
       /**
        * Constructor declaration
        */
  -    public DeleteProcedureDescriptor(
  -        ClassDescriptor classDescriptor,
  -        String name,
  -        boolean includePkFieldsOnly)
  +    public DeleteProcedureDescriptor(ClassDescriptor classDescriptor, 
  +            String name, boolean includePkFieldsOnly)
       {
           super(classDescriptor, name);
  -        this.includePkFieldsOnly = includePkFieldsOnly;
  -        if (this.includePkFieldsOnly)
  +        if (includePkFieldsOnly)
           {
  -            this.addArguments(this.getClassDescriptor().getPkFields());
  -            this.addArguments(this.getClassDescriptor().getLockingFields());
  +            addArguments(getClassDescriptor().getPkFields());
  +            addArguments(getClassDescriptor().getLockingFields());
           }
  +        this.includePkFieldsOnly = includePkFieldsOnly;
       }
   
       //---------------------------------------------------------------
  
  
  

---------------------------------------------------------------------
To unsubscribe, e-mail: ojb-dev-unsubscribe@db.apache.org
For additional commands, e-mail: ojb-dev-help@db.apache.org