mirror of
https://github.com/opensim/opensim.git
synced 2026-08-12 04:05:42 +08:00
* Access NHibernate Manager as read-only property rather than public field * Thanks Tommil
This commit is contained in:
@@ -40,7 +40,14 @@ namespace OpenSim.Data.NHibernate
|
||||
{
|
||||
private static readonly ILog m_log = LogManager.GetLogger(MethodBase.GetCurrentMethod().DeclaringType);
|
||||
|
||||
public NHibernateManager manager;
|
||||
private NHibernateManager manager;
|
||||
public NHibernateManager Manager
|
||||
{
|
||||
get
|
||||
{
|
||||
return manager;
|
||||
}
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// The plugin being loaded
|
||||
|
||||
Reference in New Issue
Block a user