Repository: ignite
Updated Branches:
  refs/heads/master 16a29d311 -> e5b3546b3


.NET: Fix analysis warnings


Project: http://git-wip-us.apache.org/repos/asf/ignite/repo
Commit: http://git-wip-us.apache.org/repos/asf/ignite/commit/8e996796
Tree: http://git-wip-us.apache.org/repos/asf/ignite/tree/8e996796
Diff: http://git-wip-us.apache.org/repos/asf/ignite/diff/8e996796

Branch: refs/heads/master
Commit: 8e996796279eb31cd167cdd10e32f71a8efaca27
Parents: dfc7288
Author: Pavel Tupitsyn <[email protected]>
Authored: Fri Sep 23 19:28:56 2016 +0300
Committer: Pavel Tupitsyn <[email protected]>
Committed: Fri Sep 23 19:28:56 2016 +0300

----------------------------------------------------------------------
 .../Impl/IgniteSessionStateItemCollection.cs                     | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/ignite/blob/8e996796/modules/platforms/dotnet/Apache.Ignite.AspNet/Impl/IgniteSessionStateItemCollection.cs
----------------------------------------------------------------------
diff --git 
a/modules/platforms/dotnet/Apache.Ignite.AspNet/Impl/IgniteSessionStateItemCollection.cs
 
b/modules/platforms/dotnet/Apache.Ignite.AspNet/Impl/IgniteSessionStateItemCollection.cs
index d1ba5da..34f0124 100644
--- 
a/modules/platforms/dotnet/Apache.Ignite.AspNet/Impl/IgniteSessionStateItemCollection.cs
+++ 
b/modules/platforms/dotnet/Apache.Ignite.AspNet/Impl/IgniteSessionStateItemCollection.cs
@@ -80,8 +80,6 @@ namespace Apache.Ignite.AspNet.Impl
                 else
                     AddRemovedKey(key);
             }
-
-            _isNew = false;
         }
 
         /// <summary>
@@ -319,6 +317,7 @@ namespace Apache.Ignite.AspNet.Impl
         /// <summary>
         /// Applies the changes.
         /// </summary>
+        [SuppressMessage("Microsoft.Performance", 
"CA1811:AvoidUncalledPrivateCode")]
         public void ApplyChanges(IgniteSessionStateItemCollection changes)
         {
             var removed = changes._removedKeys;
@@ -489,6 +488,7 @@ namespace Apache.Ignite.AspNet.Impl
             /// <summary>
             /// Copies contents to another entry.
             /// </summary>
+            [SuppressMessage("Microsoft.Performance", 
"CA1811:AvoidUncalledPrivateCode")]
             public void CopyTo(Entry entry)
             {
                 Debug.Assert(entry != null);

Reply via email to