HHH-9204 HHH-9205 : Restore AbstractCollectionPersister.doProcessQueuedOps() removed by HHH-9078; deprecate method added by HHH-9078
(cherry picked from commit 420296fd26
)
This commit is contained in:
parent
cbf1ce034a
commit
367bdbc385
|
@ -1771,8 +1771,25 @@ public abstract class AbstractCollectionPersister
|
|||
}
|
||||
}
|
||||
|
||||
protected abstract void doProcessQueuedOps(PersistentCollection collection, Serializable key,
|
||||
/**
|
||||
* Process queued operations within the PersistentCollection.
|
||||
*
|
||||
* @param collection The collection
|
||||
* @param key The collection key
|
||||
* @param nextIndex The next index to write
|
||||
* @param session The session
|
||||
* @throws HibernateException
|
||||
*
|
||||
* @deprecated Use {@link #doProcessQueuedOps(org.hibernate.collection.spi.PersistentCollection, java.io.Serializable, org.hibernate.engine.spi.SessionImplementor)}
|
||||
*/
|
||||
@Deprecated
|
||||
protected void doProcessQueuedOps(PersistentCollection collection, Serializable key,
|
||||
int nextIndex, SessionImplementor session)
|
||||
throws HibernateException {
|
||||
doProcessQueuedOps( collection, key, session );
|
||||
}
|
||||
|
||||
protected abstract void doProcessQueuedOps(PersistentCollection collection, Serializable key, SessionImplementor session)
|
||||
throws HibernateException;
|
||||
|
||||
@Override
|
||||
|
|
|
@ -158,8 +158,7 @@ public class BasicCollectionPersister extends AbstractCollectionPersister {
|
|||
}
|
||||
|
||||
@Override
|
||||
protected void doProcessQueuedOps(PersistentCollection collection, Serializable id,
|
||||
int nextIndex, SessionImplementor session)
|
||||
protected void doProcessQueuedOps(PersistentCollection collection, Serializable id, SessionImplementor session)
|
||||
throws HibernateException {
|
||||
// nothing to do
|
||||
}
|
||||
|
|
|
@ -206,9 +206,9 @@ public class OneToManyPersister extends AbstractCollectionPersister {
|
|||
}
|
||||
|
||||
@Override
|
||||
protected void doProcessQueuedOps(PersistentCollection collection, Serializable id,
|
||||
int nextIndex, SessionImplementor session) throws HibernateException {
|
||||
writeIndex( collection, collection.queuedAdditionIterator(), id, nextIndex, session );
|
||||
protected void doProcessQueuedOps(PersistentCollection collection, Serializable id, SessionImplementor session)
|
||||
throws HibernateException {
|
||||
writeIndex( collection, collection.queuedAdditionIterator(), id, getSize( id, session ), session );
|
||||
}
|
||||
|
||||
private void writeIndex(PersistentCollection collection, Iterator entries, Serializable id,
|
||||
|
|
Loading…
Reference in New Issue