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 th...@apache.org on 2003/07/11 21:01:24 UTC

cvs commit: db-ojb/src/test/org/apache/ojb/broker MtoNTest.java

thma        2003/07/11 12:01:24

  Modified:    src/java/org/apache/ojb/otm/copy
                        CloneableObjectCopyStrategy.java
                        SerializeObjectCopyStrategy.java
                        ObjectCopyStrategy.java NoOpObjectCopyStrategy.java
               src/java/org/apache/ojb/broker/metadata/fieldaccess
                        AbstractPersistentField.java
               src/java/org/apache/ojb/otm/core BaseConnection.java
               src/test/org/apache/ojb/broker MtoNTest.java
  Log:
  dear fellow committers,
  
  please remove unused import statements from your code before
  checking them in. It's really not that difficult to achieve!
  Modern tools like IDEA, JBUILDER, ECLIPSE will help you to
  achieve this.
  
  cheers,
  Thomas
  
  Revision  Changes    Path
  1.5       +0 -1      db-ojb/src/java/org/apache/ojb/otm/copy/CloneableObjectCopyStrategy.java
  
  Index: CloneableObjectCopyStrategy.java
  ===================================================================
  RCS file: /home/cvs/db-ojb/src/java/org/apache/ojb/otm/copy/CloneableObjectCopyStrategy.java,v
  retrieving revision 1.4
  retrieving revision 1.5
  diff -u -r1.4 -r1.5
  --- CloneableObjectCopyStrategy.java	8 Jul 2003 23:17:43 -0000	1.4
  +++ CloneableObjectCopyStrategy.java	11 Jul 2003 19:01:23 -0000	1.5
  @@ -54,7 +54,6 @@
    * <http://www.apache.org/>.
    */
   
  -import org.apache.ojb.broker.metadata.DescriptorRepository;
   import org.apache.ojb.broker.PersistenceBroker;
   
   /**
  
  
  
  1.5       +0 -1      db-ojb/src/java/org/apache/ojb/otm/copy/SerializeObjectCopyStrategy.java
  
  Index: SerializeObjectCopyStrategy.java
  ===================================================================
  RCS file: /home/cvs/db-ojb/src/java/org/apache/ojb/otm/copy/SerializeObjectCopyStrategy.java,v
  retrieving revision 1.4
  retrieving revision 1.5
  diff -u -r1.4 -r1.5
  --- SerializeObjectCopyStrategy.java	8 Jul 2003 23:17:43 -0000	1.4
  +++ SerializeObjectCopyStrategy.java	11 Jul 2003 19:01:23 -0000	1.5
  @@ -54,7 +54,6 @@
    * <http://www.apache.org/>.
    */
   
  -import org.apache.ojb.broker.metadata.DescriptorRepository;
   import org.apache.ojb.broker.PersistenceBroker;
   
   import java.io.*;
  
  
  
  1.4       +0 -1      db-ojb/src/java/org/apache/ojb/otm/copy/ObjectCopyStrategy.java
  
  Index: ObjectCopyStrategy.java
  ===================================================================
  RCS file: /home/cvs/db-ojb/src/java/org/apache/ojb/otm/copy/ObjectCopyStrategy.java,v
  retrieving revision 1.3
  retrieving revision 1.4
  diff -u -r1.3 -r1.4
  --- ObjectCopyStrategy.java	8 Jul 2003 23:17:43 -0000	1.3
  +++ ObjectCopyStrategy.java	11 Jul 2003 19:01:23 -0000	1.4
  @@ -1,6 +1,5 @@
   package org.apache.ojb.otm.copy;
   
  -import org.apache.ojb.broker.metadata.DescriptorRepository;
   import org.apache.ojb.broker.PersistenceBroker;
   
   /**
  
  
  
  1.4       +0 -1      db-ojb/src/java/org/apache/ojb/otm/copy/NoOpObjectCopyStrategy.java
  
  Index: NoOpObjectCopyStrategy.java
  ===================================================================
  RCS file: /home/cvs/db-ojb/src/java/org/apache/ojb/otm/copy/NoOpObjectCopyStrategy.java,v
  retrieving revision 1.3
  retrieving revision 1.4
  diff -u -r1.3 -r1.4
  --- NoOpObjectCopyStrategy.java	8 Jul 2003 23:17:43 -0000	1.3
  +++ NoOpObjectCopyStrategy.java	11 Jul 2003 19:01:23 -0000	1.4
  @@ -1,6 +1,5 @@
   package org.apache.ojb.otm.copy;
   
  -import org.apache.ojb.broker.metadata.DescriptorRepository;
   import org.apache.ojb.broker.PersistenceBroker;
   
   /* ====================================================================
  
  
  
  1.5       +1 -3      db-ojb/src/java/org/apache/ojb/broker/metadata/fieldaccess/AbstractPersistentField.java
  
  Index: AbstractPersistentField.java
  ===================================================================
  RCS file: /home/cvs/db-ojb/src/java/org/apache/ojb/broker/metadata/fieldaccess/AbstractPersistentField.java,v
  retrieving revision 1.4
  retrieving revision 1.5
  diff -u -r1.4 -r1.5
  --- AbstractPersistentField.java	11 Jul 2003 07:54:21 -0000	1.4
  +++ AbstractPersistentField.java	11 Jul 2003 19:01:24 -0000	1.5
  @@ -54,8 +54,6 @@
    * <http://www.apache.org/>.
    */
   
  -import org.apache.commons.lang.builder.ToStringBuilder;
  -import org.apache.commons.lang.builder.ToStringStyle;
   import org.apache.ojb.broker.metadata.MetadataException;
   import org.apache.ojb.broker.util.ProxyHelper;
   import org.apache.ojb.broker.util.logging.Logger;
  
  
  
  1.19      +0 -1      db-ojb/src/java/org/apache/ojb/otm/core/BaseConnection.java
  
  Index: BaseConnection.java
  ===================================================================
  RCS file: /home/cvs/db-ojb/src/java/org/apache/ojb/otm/core/BaseConnection.java,v
  retrieving revision 1.18
  retrieving revision 1.19
  diff -u -r1.18 -r1.19
  --- BaseConnection.java	11 Jul 2003 16:38:32 -0000	1.18
  +++ BaseConnection.java	11 Jul 2003 19:01:24 -0000	1.19
  @@ -69,7 +69,6 @@
   import org.apache.ojb.broker.VirtualProxy;
   import org.apache.ojb.broker.util.configuration.ConfigurationException;
   import org.apache.ojb.broker.util.configuration.Configurator;
  -import org.apache.ojb.broker.util.ObjectModificationDefaultImpl;
   import org.apache.ojb.broker.accesslayer.IndirectionHandler;
   import org.apache.ojb.broker.accesslayer.OJBIterator;
   import org.apache.ojb.broker.metadata.ClassDescriptor;
  
  
  
  1.9       +0 -1      db-ojb/src/test/org/apache/ojb/broker/MtoNTest.java
  
  Index: MtoNTest.java
  ===================================================================
  RCS file: /home/cvs/db-ojb/src/test/org/apache/ojb/broker/MtoNTest.java,v
  retrieving revision 1.8
  retrieving revision 1.9
  diff -u -r1.8 -r1.9
  --- MtoNTest.java	10 Jul 2003 22:05:18 -0000	1.8
  +++ MtoNTest.java	11 Jul 2003 19:01:24 -0000	1.9
  @@ -6,7 +6,6 @@
   
   import java.util.Arrays;
   import java.util.Date;
  -import java.util.Iterator;
   import java.util.List;
   import java.util.Vector;
   
  
  
  

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