You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@ignite.apache.org by sb...@apache.org on 2017/04/14 08:53:02 UTC

[08/50] [abbrv] ignite git commit: .NET: Fix code analysis

.NET: Fix code analysis


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

Branch: refs/heads/ignite-4929
Commit: 0a69e45a200febcc35913485da545c7aee6f0709
Parents: 7883668
Author: Pavel Tupitsyn <pt...@apache.org>
Authored: Wed Apr 12 15:37:47 2017 +0300
Committer: Pavel Tupitsyn <pt...@apache.org>
Committed: Wed Apr 12 15:37:47 2017 +0300

----------------------------------------------------------------------
 .../dotnet/Apache.Ignite.Core/Binary/BinaryTypeConfiguration.cs    | 1 -
 .../dotnet/Apache.Ignite.Core/Impl/Binary/BinaryObject.cs          | 2 --
 2 files changed, 3 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/ignite/blob/0a69e45a/modules/platforms/dotnet/Apache.Ignite.Core/Binary/BinaryTypeConfiguration.cs
----------------------------------------------------------------------
diff --git a/modules/platforms/dotnet/Apache.Ignite.Core/Binary/BinaryTypeConfiguration.cs b/modules/platforms/dotnet/Apache.Ignite.Core/Binary/BinaryTypeConfiguration.cs
index d342fa5..c36b9fd 100644
--- a/modules/platforms/dotnet/Apache.Ignite.Core/Binary/BinaryTypeConfiguration.cs
+++ b/modules/platforms/dotnet/Apache.Ignite.Core/Binary/BinaryTypeConfiguration.cs
@@ -18,7 +18,6 @@
 namespace Apache.Ignite.Core.Binary
 {
     using System;
-    using System.Collections.Generic;
     using Apache.Ignite.Core.Impl.Common;
 
     /// <summary>

http://git-wip-us.apache.org/repos/asf/ignite/blob/0a69e45a/modules/platforms/dotnet/Apache.Ignite.Core/Impl/Binary/BinaryObject.cs
----------------------------------------------------------------------
diff --git a/modules/platforms/dotnet/Apache.Ignite.Core/Impl/Binary/BinaryObject.cs b/modules/platforms/dotnet/Apache.Ignite.Core/Impl/Binary/BinaryObject.cs
index c8c904d..690a0a4 100644
--- a/modules/platforms/dotnet/Apache.Ignite.Core/Impl/Binary/BinaryObject.cs
+++ b/modules/platforms/dotnet/Apache.Ignite.Core/Impl/Binary/BinaryObject.cs
@@ -256,8 +256,6 @@ namespace Apache.Ignite.Core.Impl.Binary
             if (TypeId != that.TypeId)
                 return false;
 
-            var desc = _marsh.GetDescriptor(true, TypeId);
-
             return BinaryArrayEqualityComparer.Equals(this, that);
         }