You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@ignite.apache.org by pt...@apache.org on 2016/11/29 16:28:11 UTC

ignite git commit: .NET: Fix code analysis warning

Repository: ignite
Updated Branches:
  refs/heads/master 59c3ee8cb -> c78d0e9d2


.NET: Fix code analysis warning


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

Branch: refs/heads/master
Commit: c78d0e9d277a42484fc9d30693675fb5213f9244
Parents: 59c3ee8
Author: Pavel Tupitsyn <pt...@apache.org>
Authored: Tue Nov 29 19:27:55 2016 +0300
Committer: Pavel Tupitsyn <pt...@apache.org>
Committed: Tue Nov 29 19:27:55 2016 +0300

----------------------------------------------------------------------
 modules/platforms/dotnet/Apache.Ignite.Core/IgniteConfiguration.cs | 1 +
 1 file changed, 1 insertion(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/ignite/blob/c78d0e9d/modules/platforms/dotnet/Apache.Ignite.Core/IgniteConfiguration.cs
----------------------------------------------------------------------
diff --git a/modules/platforms/dotnet/Apache.Ignite.Core/IgniteConfiguration.cs b/modules/platforms/dotnet/Apache.Ignite.Core/IgniteConfiguration.cs
index 16d11e8..08789b6 100644
--- a/modules/platforms/dotnet/Apache.Ignite.Core/IgniteConfiguration.cs
+++ b/modules/platforms/dotnet/Apache.Ignite.Core/IgniteConfiguration.cs
@@ -767,6 +767,7 @@
         /// <param name="xml">Xml string.</param>
         /// <returns>Deserialized instance.</returns>
         [SuppressMessage("Microsoft.Reliability", "CA2000:Dispose objects before losing scope")]
+        [SuppressMessage("Microsoft.Usage", "CA2202: Do not call Dispose more than one time on an object")]
         public static IgniteConfiguration FromXml(string xml)
         {
             IgniteArgumentCheck.NotNullOrEmpty(xml, "xml");