From: <fab...@us...> - 2008-10-17 18:05:28
|
Revision: 3863 http://nhibernate.svn.sourceforge.net/nhibernate/?rev=3863&view=rev Author: fabiomaulo Date: 2008-10-17 18:05:25 +0000 (Fri, 17 Oct 2008) Log Message: ----------- Minor Modified Paths: -------------- trunk/nhibernate/src/NHibernate/EmptyInterceptor.cs Modified: trunk/nhibernate/src/NHibernate/EmptyInterceptor.cs =================================================================== --- trunk/nhibernate/src/NHibernate/EmptyInterceptor.cs 2008-10-16 03:32:17 UTC (rev 3862) +++ trunk/nhibernate/src/NHibernate/EmptyInterceptor.cs 2008-10-17 18:05:25 UTC (rev 3863) @@ -12,15 +12,15 @@ { } - public void OnCollectionRecreate(object collection, object key) + public virtual void OnCollectionRecreate(object collection, object key) { } - public void OnCollectionRemove(object collection, object key) + public virtual void OnCollectionRemove(object collection, object key) { } - public void OnCollectionUpdate(object collection, object key) + public virtual void OnCollectionUpdate(object collection, object key) { } @@ -63,7 +63,7 @@ return null; } - public object GetEntity(string entityName, object id) + public virtual object GetEntity(string entityName, object id) { return null; } @@ -90,7 +90,7 @@ { } - public SqlString OnPrepareStatement(SqlString sql) + public virtual SqlString OnPrepareStatement(SqlString sql) { return sql; } This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |