You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@ibatis.apache.org by rg...@apache.org on 2008/06/09 13:24:58 UTC

svn commit: r664681 - /ibatis/trunk/cs/V3/src/Apache.Ibatis.DataMapper/DataMapper.cs

Author: rgrabowski
Date: Mon Jun  9 04:24:57 2008
New Revision: 664681

URL: http://svn.apache.org/viewvc?rev=664681&view=rev
Log:
Reverted exposing private members as protected. ISessionStore and ISessionFactory are accessible from IModelStoreAccessor property.

Modified:
    ibatis/trunk/cs/V3/src/Apache.Ibatis.DataMapper/DataMapper.cs

Modified: ibatis/trunk/cs/V3/src/Apache.Ibatis.DataMapper/DataMapper.cs
URL: http://svn.apache.org/viewvc/ibatis/trunk/cs/V3/src/Apache.Ibatis.DataMapper/DataMapper.cs?rev=664681&r1=664680&r2=664681&view=diff
==============================================================================
--- ibatis/trunk/cs/V3/src/Apache.Ibatis.DataMapper/DataMapper.cs (original)
+++ ibatis/trunk/cs/V3/src/Apache.Ibatis.DataMapper/DataMapper.cs Mon Jun  9 04:24:57 2008
@@ -40,9 +40,9 @@
     /// </summary>
     public class DataMapper : IDataMapper, IModelStoreAccessor
     {
-        protected readonly IModelStore modelStore = null;
-        protected readonly ISessionStore sessionStore = null;
-        protected readonly ISessionFactory sessionFactory = null;
+        private readonly IModelStore modelStore = null;
+        private readonly ISessionStore sessionStore = null;
+        private readonly ISessionFactory sessionFactory = null;
 
         /// <summary>
         /// Initializes a new instance of the <see cref="DataMapper"/> class.