.NET: Remove unused imports

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

Branch: refs/heads/ignite-6149
Commit: 8936a0db52d1d290a482f9f0044908e3076dc899
Parents: a00052e
Author: Pavel Tupitsyn <[email protected]>
Authored: Fri Sep 15 14:17:30 2017 +0300
Committer: Pavel Tupitsyn <[email protected]>
Committed: Fri Sep 15 14:17:30 2017 +0300

----------------------------------------------------------------------
 .../platforms/dotnet/Apache.Ignite.Benchmarks/BenchmarkRunner.cs   | 1 -
 .../platforms/dotnet/Apache.Ignite.Core.Tests/Client/CacheTest.cs  | 1 -
 .../dotnet/Apache.Ignite.Core.Tests/Compute/AbstractTaskTest.cs    | 2 --
 .../Apache.Ignite.Core.Tests/Compute/BinarizableClosureTaskTest.cs | 1 -
 .../Plugin/TestIgnitePluginConfiguration.cs                        | 1 -
 .../Apache.Ignite.Examples/Datagrid/MultiTieredCacheExample.cs     | 2 --
 .../examples/Apache.Ignite.Examples/Misc/LifecycleExample.cs       | 1 -
 7 files changed, 9 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/ignite/blob/8936a0db/modules/platforms/dotnet/Apache.Ignite.Benchmarks/BenchmarkRunner.cs
----------------------------------------------------------------------
diff --git 
a/modules/platforms/dotnet/Apache.Ignite.Benchmarks/BenchmarkRunner.cs 
b/modules/platforms/dotnet/Apache.Ignite.Benchmarks/BenchmarkRunner.cs
index 40ae01e..2571c14 100644
--- a/modules/platforms/dotnet/Apache.Ignite.Benchmarks/BenchmarkRunner.cs
+++ b/modules/platforms/dotnet/Apache.Ignite.Benchmarks/BenchmarkRunner.cs
@@ -20,7 +20,6 @@ namespace Apache.Ignite.Benchmarks
     using System;
     using System.Diagnostics;
     using System.Text;
-    using Apache.Ignite.Benchmarks.Binary;
     using Apache.Ignite.Benchmarks.Interop;
 
     /// <summary>

http://git-wip-us.apache.org/repos/asf/ignite/blob/8936a0db/modules/platforms/dotnet/Apache.Ignite.Core.Tests/Client/CacheTest.cs
----------------------------------------------------------------------
diff --git 
a/modules/platforms/dotnet/Apache.Ignite.Core.Tests/Client/CacheTest.cs 
b/modules/platforms/dotnet/Apache.Ignite.Core.Tests/Client/CacheTest.cs
index 2831e57..3b0daa1 100644
--- a/modules/platforms/dotnet/Apache.Ignite.Core.Tests/Client/CacheTest.cs
+++ b/modules/platforms/dotnet/Apache.Ignite.Core.Tests/Client/CacheTest.cs
@@ -21,7 +21,6 @@ namespace Apache.Ignite.Core.Tests.Client
     using System.Collections.Concurrent;
     using System.Collections.Generic;
     using System.Linq;
-    using System.Net;
     using System.Threading;
     using Apache.Ignite.Core.Binary;
     using Apache.Ignite.Core.Cache;

http://git-wip-us.apache.org/repos/asf/ignite/blob/8936a0db/modules/platforms/dotnet/Apache.Ignite.Core.Tests/Compute/AbstractTaskTest.cs
----------------------------------------------------------------------
diff --git 
a/modules/platforms/dotnet/Apache.Ignite.Core.Tests/Compute/AbstractTaskTest.cs 
b/modules/platforms/dotnet/Apache.Ignite.Core.Tests/Compute/AbstractTaskTest.cs
index e60ad4a..e3f3d61 100644
--- 
a/modules/platforms/dotnet/Apache.Ignite.Core.Tests/Compute/AbstractTaskTest.cs
+++ 
b/modules/platforms/dotnet/Apache.Ignite.Core.Tests/Compute/AbstractTaskTest.cs
@@ -18,10 +18,8 @@
 namespace Apache.Ignite.Core.Tests.Compute
 {
     using System;
-    using System.Collections.Generic;
     using System.Linq;
     using System.Threading;
-    using Apache.Ignite.Core.Binary;
     using Apache.Ignite.Core.Tests.Process;
     using NUnit.Framework;
 

http://git-wip-us.apache.org/repos/asf/ignite/blob/8936a0db/modules/platforms/dotnet/Apache.Ignite.Core.Tests/Compute/BinarizableClosureTaskTest.cs
----------------------------------------------------------------------
diff --git 
a/modules/platforms/dotnet/Apache.Ignite.Core.Tests/Compute/BinarizableClosureTaskTest.cs
 
b/modules/platforms/dotnet/Apache.Ignite.Core.Tests/Compute/BinarizableClosureTaskTest.cs
index 3482456..8e7a60f 100644
--- 
a/modules/platforms/dotnet/Apache.Ignite.Core.Tests/Compute/BinarizableClosureTaskTest.cs
+++ 
b/modules/platforms/dotnet/Apache.Ignite.Core.Tests/Compute/BinarizableClosureTaskTest.cs
@@ -19,7 +19,6 @@ namespace Apache.Ignite.Core.Tests.Compute
 {
     using System;
     using Apache.Ignite.Core.Binary;
-    using Apache.Ignite.Core.Common;
     using Apache.Ignite.Core.Compute;
     using NUnit.Framework;
 

http://git-wip-us.apache.org/repos/asf/ignite/blob/8936a0db/modules/platforms/dotnet/Apache.Ignite.Core.Tests/Plugin/TestIgnitePluginConfiguration.cs
----------------------------------------------------------------------
diff --git 
a/modules/platforms/dotnet/Apache.Ignite.Core.Tests/Plugin/TestIgnitePluginConfiguration.cs
 
b/modules/platforms/dotnet/Apache.Ignite.Core.Tests/Plugin/TestIgnitePluginConfiguration.cs
index 7eacfff..b2334c7 100644
--- 
a/modules/platforms/dotnet/Apache.Ignite.Core.Tests/Plugin/TestIgnitePluginConfiguration.cs
+++ 
b/modules/platforms/dotnet/Apache.Ignite.Core.Tests/Plugin/TestIgnitePluginConfiguration.cs
@@ -19,7 +19,6 @@
 {
     using Apache.Ignite.Core.Binary;
     using Apache.Ignite.Core.Plugin;
-    using Apache.Ignite.Examples.Datagrid;
 
     /// <summary>
     /// Plugin configuration.

http://git-wip-us.apache.org/repos/asf/ignite/blob/8936a0db/modules/platforms/dotnet/examples/Apache.Ignite.Examples/Datagrid/MultiTieredCacheExample.cs
----------------------------------------------------------------------
diff --git 
a/modules/platforms/dotnet/examples/Apache.Ignite.Examples/Datagrid/MultiTieredCacheExample.cs
 
b/modules/platforms/dotnet/examples/Apache.Ignite.Examples/Datagrid/MultiTieredCacheExample.cs
index f7caa78..119504b 100644
--- 
a/modules/platforms/dotnet/examples/Apache.Ignite.Examples/Datagrid/MultiTieredCacheExample.cs
+++ 
b/modules/platforms/dotnet/examples/Apache.Ignite.Examples/Datagrid/MultiTieredCacheExample.cs
@@ -25,8 +25,6 @@ namespace Apache.Ignite.Examples.Datagrid
     using Apache.Ignite.Core.Cache;
     using Apache.Ignite.Core.Cache.Configuration;
     using Apache.Ignite.Core.Cache.Eviction;
-    using Apache.Ignite.Core.Discovery.Tcp;
-    using Apache.Ignite.Core.Discovery.Tcp.Static;
 
     /// <summary>
     /// This example demonstrates on how to configure a multi-tiered Ignite 
cache that will store data in different 

http://git-wip-us.apache.org/repos/asf/ignite/blob/8936a0db/modules/platforms/dotnet/examples/Apache.Ignite.Examples/Misc/LifecycleExample.cs
----------------------------------------------------------------------
diff --git 
a/modules/platforms/dotnet/examples/Apache.Ignite.Examples/Misc/LifecycleExample.cs
 
b/modules/platforms/dotnet/examples/Apache.Ignite.Examples/Misc/LifecycleExample.cs
index c30d60a..466f2fe 100644
--- 
a/modules/platforms/dotnet/examples/Apache.Ignite.Examples/Misc/LifecycleExample.cs
+++ 
b/modules/platforms/dotnet/examples/Apache.Ignite.Examples/Misc/LifecycleExample.cs
@@ -18,7 +18,6 @@
 namespace Apache.Ignite.Examples.Misc
 {
     using System;
-    using System.Collections.Generic;
     using Apache.Ignite.Core;
     using Apache.Ignite.Core.Discovery.Tcp;
     using Apache.Ignite.Core.Discovery.Tcp.Static;

Reply via email to