You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@ignite.apache.org by ag...@apache.org on 2017/03/30 11:50:10 UTC

[41/50] [abbrv] ignite git commit: IGNITE-3510 .NET: Fix namespaces and access modifiers

IGNITE-3510 .NET: Fix namespaces and access modifiers


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

Branch: refs/heads/ignite-3477-master
Commit: 348b9efdf54d885573e5774a543fe46e62977b40
Parents: 3f8f4bd
Author: Pavel Tupitsyn <pt...@apache.org>
Authored: Wed Mar 29 13:32:27 2017 +0300
Committer: Pavel Tupitsyn <pt...@apache.org>
Committed: Wed Mar 29 13:32:27 2017 +0300

----------------------------------------------------------------------
 .../dotnet/Apache.Ignite.Core/Impl/Binary/Io/IBinaryStream.cs     | 3 +--
 .../Apache.Ignite.Core/Impl/Binary/Io/IBinaryStreamProcessor.cs   | 3 +--
 2 files changed, 2 insertions(+), 4 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/ignite/blob/348b9efd/modules/platforms/dotnet/Apache.Ignite.Core/Impl/Binary/Io/IBinaryStream.cs
----------------------------------------------------------------------
diff --git a/modules/platforms/dotnet/Apache.Ignite.Core/Impl/Binary/Io/IBinaryStream.cs b/modules/platforms/dotnet/Apache.Ignite.Core/Impl/Binary/Io/IBinaryStream.cs
index 80c1a74..09d0be7 100644
--- a/modules/platforms/dotnet/Apache.Ignite.Core/Impl/Binary/Io/IBinaryStream.cs
+++ b/modules/platforms/dotnet/Apache.Ignite.Core/Impl/Binary/Io/IBinaryStream.cs
@@ -25,9 +25,8 @@ namespace Apache.Ignite.Core.Impl.Binary.IO
     /// <summary>
     /// Stream capable of working with binary objects.
     /// </summary>
-    [CLSCompliant(false)]
     [SuppressMessage("Microsoft.Naming", "CA1711:IdentifiersShouldNotHaveIncorrectSuffix")]
-    public unsafe interface IBinaryStream : IDisposable
+    internal unsafe interface IBinaryStream : IDisposable
     {
         /// <summary>
         /// Write bool.

http://git-wip-us.apache.org/repos/asf/ignite/blob/348b9efd/modules/platforms/dotnet/Apache.Ignite.Core/Impl/Binary/Io/IBinaryStreamProcessor.cs
----------------------------------------------------------------------
diff --git a/modules/platforms/dotnet/Apache.Ignite.Core/Impl/Binary/Io/IBinaryStreamProcessor.cs b/modules/platforms/dotnet/Apache.Ignite.Core/Impl/Binary/Io/IBinaryStreamProcessor.cs
index 3b8bd8b..1becf80 100644
--- a/modules/platforms/dotnet/Apache.Ignite.Core/Impl/Binary/Io/IBinaryStreamProcessor.cs
+++ b/modules/platforms/dotnet/Apache.Ignite.Core/Impl/Binary/Io/IBinaryStreamProcessor.cs
@@ -22,8 +22,7 @@ namespace Apache.Ignite.Core.Impl.Binary.IO
     /// <summary>
     /// Binary stream processor.
     /// </summary>
-    [CLSCompliant(false)]
-    public unsafe interface IBinaryStreamProcessor<in TArg, out T>
+    internal unsafe interface IBinaryStreamProcessor<in TArg, out T>
     {
         /// <summary>
         /// Invokes the processor.