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 2017/05/29 17:05:48 UTC

ignite git commit: .NET: Fix build warnings

Repository: ignite
Updated Branches:
  refs/heads/master cee5dd84a -> 7adf588f0


.NET: Fix build warnings


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

Branch: refs/heads/master
Commit: 7adf588f0b85d4a3a0a210493f28b1f51f4336b9
Parents: cee5dd8
Author: Pavel Tupitsyn <pt...@apache.org>
Authored: Mon May 29 20:05:38 2017 +0300
Committer: Pavel Tupitsyn <pt...@apache.org>
Committed: Mon May 29 20:05:38 2017 +0300

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


http://git-wip-us.apache.org/repos/asf/ignite/blob/7adf588f/modules/platforms/dotnet/Apache.Ignite.Core/Impl/Binary/Binary.cs
----------------------------------------------------------------------
diff --git a/modules/platforms/dotnet/Apache.Ignite.Core/Impl/Binary/Binary.cs b/modules/platforms/dotnet/Apache.Ignite.Core/Impl/Binary/Binary.cs
index bcf6c2d..8f75034 100644
--- a/modules/platforms/dotnet/Apache.Ignite.Core/Impl/Binary/Binary.cs
+++ b/modules/platforms/dotnet/Apache.Ignite.Core/Impl/Binary/Binary.cs
@@ -198,6 +198,7 @@ namespace Apache.Ignite.Core.Impl.Binary
         /** <inheritDoc /> */
         public IBinaryObject BuildEnum(Type type, string valueName)
         {
+            IgniteArgumentCheck.NotNull(type, "type");
             IgniteArgumentCheck.NotNullOrEmpty(valueName, "valueName");
 
             var desc = Marshaller.GetDescriptor(type);