remove use of mix accessors protected/public on ApplicationContext property for .NET 1.1

This commit is contained in:
markpollack
2009-12-16 04:16:42 +00:00
parent 8564cd1e13
commit b1f4e4c776

View File

@@ -127,7 +127,11 @@ namespace Spring.Data.NHibernate
public IApplicationContext ApplicationContext
{
set { this.applicationContext = value; }
#if NET_1_1
get { return this.applicationContext; }
#else
protected get { return this.applicationContext; }
#endif
}
/// <summary>