fixed envers build (broken since rev 20760)

git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@20774 1b8cb986-b30d-0410-93ca-fae66ebed9b2
This commit is contained in:
Erik-Berndt Scheper 2010-10-04 14:52:19 +00:00
parent 59ec34d5b6
commit dbe30fc518
1 changed files with 0 additions and 8 deletions

View File

@ -77,14 +77,6 @@ public abstract class AbstractDelegateSessionImplementor implements SessionImple
return delegate.getLoadQueryInfluencers();
}
public void registerInsertedKey(EntityPersister persister, Serializable id) {
delegate.registerInsertedKey( persister, id );
}
public boolean wasInsertedDuringTransaction(EntityPersister persister, Serializable id) {
return delegate.wasInsertedDuringTransaction( persister, id );
}
public Interceptor getInterceptor() {
return delegate.getInterceptor();
}