Repository: ignite Updated Branches: refs/heads/master 5b31d83f3 -> 058ad5055
.NET: Fix minor analysis warnings Project: http://git-wip-us.apache.org/repos/asf/ignite/repo Commit: http://git-wip-us.apache.org/repos/asf/ignite/commit/986e2769 Tree: http://git-wip-us.apache.org/repos/asf/ignite/tree/986e2769 Diff: http://git-wip-us.apache.org/repos/asf/ignite/diff/986e2769 Branch: refs/heads/master Commit: 986e2769b3e1112a601e1688231a500afe23360a Parents: 5b31d83 Author: Pavel Tupitsyn <[email protected]> Authored: Tue Nov 8 14:07:54 2016 +0300 Committer: Pavel Tupitsyn <[email protected]> Committed: Wed Nov 9 19:53:36 2016 +0300 ---------------------------------------------------------------------- .../dotnet/Apache.Ignite.Core/Compute/ComputeTaskSplitAdapter.cs | 2 +- .../dotnet/Apache.Ignite.Core/Impl/Unmanaged/UnmanagedTarget.cs | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/ignite/blob/986e2769/modules/platforms/dotnet/Apache.Ignite.Core/Compute/ComputeTaskSplitAdapter.cs ---------------------------------------------------------------------- diff --git a/modules/platforms/dotnet/Apache.Ignite.Core/Compute/ComputeTaskSplitAdapter.cs b/modules/platforms/dotnet/Apache.Ignite.Core/Compute/ComputeTaskSplitAdapter.cs index f6a2f07..86b1406 100644 --- a/modules/platforms/dotnet/Apache.Ignite.Core/Compute/ComputeTaskSplitAdapter.cs +++ b/modules/platforms/dotnet/Apache.Ignite.Core/Compute/ComputeTaskSplitAdapter.cs @@ -62,7 +62,7 @@ namespace Apache.Ignite.Core.Compute /// </returns> /// <exception cref="IgniteException">Split returned no jobs.</exception> [SuppressMessage("Microsoft.Design", "CA1062:Validate arguments of public methods")] - override public IDictionary<IComputeJob<TJobRes>, IClusterNode> Map(IList<IClusterNode> subgrid, TArg arg) + public override IDictionary<IComputeJob<TJobRes>, IClusterNode> Map(IList<IClusterNode> subgrid, TArg arg) { var jobs = Split(subgrid.Count, arg); http://git-wip-us.apache.org/repos/asf/ignite/blob/986e2769/modules/platforms/dotnet/Apache.Ignite.Core/Impl/Unmanaged/UnmanagedTarget.cs ---------------------------------------------------------------------- diff --git a/modules/platforms/dotnet/Apache.Ignite.Core/Impl/Unmanaged/UnmanagedTarget.cs b/modules/platforms/dotnet/Apache.Ignite.Core/Impl/Unmanaged/UnmanagedTarget.cs index e54a199..a5e2cb0 100644 --- a/modules/platforms/dotnet/Apache.Ignite.Core/Impl/Unmanaged/UnmanagedTarget.cs +++ b/modules/platforms/dotnet/Apache.Ignite.Core/Impl/Unmanaged/UnmanagedTarget.cs @@ -24,7 +24,7 @@ namespace Apache.Ignite.Core.Impl.Unmanaged /// <summary> /// Base unmanaged target implementation. /// </summary> - internal unsafe sealed class UnmanagedTarget : CriticalHandle, IUnmanagedTarget + internal sealed unsafe class UnmanagedTarget : CriticalHandle, IUnmanagedTarget { /** Context. */ private readonly UnmanagedContext _ctx;
