Update of /cvsroot/hibernate/Hibernate/cirrus/hibernate/collections
In directory sc8-pr-cvs1:/tmp/cvs-serv16209/cirrus/hibernate/collections
Modified Files:
PersistentCollection.java
Log Message:
added a test for initialize-after-add
Index: PersistentCollection.java
===================================================================
RCS file: /cvsroot/hibernate/Hibernate/cirrus/hibernate/collections/PersistentCollection.java,v
retrieving revision 1.76
retrieving revision 1.77
diff -C2 -d -r1.76 -r1.77
*** PersistentCollection.java 7 Dec 2002 09:05:41 -0000 1.76
--- PersistentCollection.java 7 Dec 2002 09:41:22 -0000 1.77
***************
*** 87,91 ****
}
! public boolean addAll(Object obj) {
throw new AssertionFailure("Collection does not support delayed initialization");
}
--- 87,91 ----
}
! public boolean addAll(Collection coll) {
throw new AssertionFailure("Collection does not support delayed initialization");
}
|