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/06/19 21:58:19 UTC

cvs commit: db-ojb/src/java/org/apache/ojb/broker/accesslayer ListProxy.java

thma        2003/06/19 12:58:18

  Modified:    src/java/org/apache/ojb/broker/accesslayer ListProxy.java
  Log:
  use RemovalAwareCollection in ListProxy and CollectionProxy
  
  Revision  Changes    Path
  1.3       +3 -3      db-ojb/src/java/org/apache/ojb/broker/accesslayer/ListProxy.java
  
  Index: ListProxy.java
  ===================================================================
  RCS file: /home/cvs/db-ojb/src/java/org/apache/ojb/broker/accesslayer/ListProxy.java,v
  retrieving revision 1.2
  retrieving revision 1.3
  diff -u -r1.2 -r1.3
  --- ListProxy.java	11 Jan 2003 20:05:00 -0000	1.2
  +++ ListProxy.java	19 Jun 2003 19:58:18 -0000	1.3
  @@ -61,7 +61,7 @@
   import org.apache.ojb.broker.PBKey;
   import org.apache.ojb.broker.PersistenceBrokerException;
   import org.apache.ojb.broker.query.Query;
  -import org.apache.ojb.broker.util.collections.ManageableArrayList;
  +import org.apache.ojb.broker.util.collections.RemovalAwareCollection;
   
   /**
    * ListProxy. <br> A placeHolder for a whole list to support deferred loading of
  @@ -80,7 +80,7 @@
   	 */
   	public ListProxy(PBKey aKey, Query aQuery)
   	{
  -		this(aKey, ManageableArrayList.class, aQuery);
  +		this(aKey, RemovalAwareCollection.class, aQuery);
   	}
   
   	/**