Here is my class looks like:
public class MyList extends ArrayList{
List<MyObject> contents;
add()
remove()
}
when I called remove(). it indicated that PersistentBag.remove() got called, and then it crashed.
Can someone let me know why the persistentBag got involved? what area should pay more attention if I define my own arrayList and applied in the Hibernate later, thanks

