|
From: <fab...@us...> - 2011-02-19 14:02:27
|
Revision: 5385
http://nhibernate.svn.sourceforge.net/nhibernate/?rev=5385&view=rev
Author: fabiomaulo
Date: 2011-02-19 14:02:21 +0000 (Sat, 19 Feb 2011)
Log Message:
-----------
Ups! NH-2455 (thanks to TeamCity)
Modified Paths:
--------------
trunk/nhibernate/src/NHibernate.ByteCode.Spring/ProxyFactoryFactory.cs
Modified: trunk/nhibernate/src/NHibernate.ByteCode.Spring/ProxyFactoryFactory.cs
===================================================================
--- trunk/nhibernate/src/NHibernate.ByteCode.Spring/ProxyFactoryFactory.cs 2011-02-19 13:54:53 UTC (rev 5384)
+++ trunk/nhibernate/src/NHibernate.ByteCode.Spring/ProxyFactoryFactory.cs 2011-02-19 14:02:21 UTC (rev 5385)
@@ -27,6 +27,11 @@
return false;
}
+ public bool IsProxy(object entity)
+ {
+ return entity is INHibernateProxy;
+ }
+
#endregion
}
}
\ No newline at end of file
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|