Revision: 3826
http://nhibernate.svn.sourceforge.net/nhibernate/?rev=3826&view=rev
Author: ayenderahien
Date: 2008-10-10 00:13:56 +0000 (Fri, 10 Oct 2008)
Log Message:
-----------
Nitpickers defensive coding
Modified Paths:
--------------
branches/static-proxies/src/NHibernate.PostSharp.Proxies.Tests/Address.cs
branches/static-proxies/src/NHibernate.PostSharp.Proxies.Tests/Customer.cs
Modified: branches/static-proxies/src/NHibernate.PostSharp.Proxies.Tests/Address.cs
===================================================================
--- branches/static-proxies/src/NHibernate.PostSharp.Proxies.Tests/Address.cs 2008-10-10 00:08:11 UTC (rev 3825)
+++ branches/static-proxies/src/NHibernate.PostSharp.Proxies.Tests/Address.cs 2008-10-10 00:13:56 UTC (rev 3826)
@@ -1,5 +1,9 @@
namespace NHibernate.PostSharp.Proxies.Tests
{
+ // those attributes are here until I figure out how to make PostSharp get the list of entities
+ // we want to weave externally, hopefully from the mapping
+
+ // THEY WON'T BE HERE FOR FINAL VERSION - THIS CLASS WOULD BE FULLY POCO
[NHibernateLazyLoadingSupport, AddNHibernateProxyAttribute]
public class Address
{
Modified: branches/static-proxies/src/NHibernate.PostSharp.Proxies.Tests/Customer.cs
===================================================================
--- branches/static-proxies/src/NHibernate.PostSharp.Proxies.Tests/Customer.cs 2008-10-10 00:08:11 UTC (rev 3825)
+++ branches/static-proxies/src/NHibernate.PostSharp.Proxies.Tests/Customer.cs 2008-10-10 00:13:56 UTC (rev 3826)
@@ -2,6 +2,10 @@
namespace NHibernate.PostSharp.Proxies.Tests
{
+ // those attributes are here until I figure out how to make PostSharp get the list of entities
+ // we want to weave externally, hopefully from the mapping
+
+ // THEY WON'T BE HERE FOR FINAL VERSION - THIS CLASS WOULD BE FULLY POCO
[NHibernateLazyLoadingSupport, AddNHibernateProxyAttribute]
public class Customer
{
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|