HHH-4545 : change CollectionAction.readObject() to private

git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@17947 1b8cb986-b30d-0410-93ca-fae66ebed9b2
This commit is contained in:
Gail Badner 2009-11-07 00:38:39 +00:00
parent d82c1e859b
commit 13b6de2490
1 changed files with 1 additions and 1 deletions

View File

@ -65,7 +65,7 @@ public abstract class CollectionAction implements Executable, Serializable, Comp
return collection;
}
protected void readObject(ObjectInputStream ois) throws IOException, ClassNotFoundException {
private void readObject(ObjectInputStream ois) throws IOException, ClassNotFoundException {
ois.defaultReadObject();
persister = session.getFactory().getCollectionPersister( collectionRole );
}