Removed unused usings (#122)

This commit is contained in:
Greg Ingram 2019-10-21 12:53:55 -04:00 committed by Aman Bhardwaj
parent c297101db0
commit 3d2fbe8b25
23 changed files with 0 additions and 45 deletions

View File

@ -6,12 +6,9 @@
namespace ActorClient
{
using System;
using System.ComponentModel.DataAnnotations;
using Dapr.Actors;
using Dapr.Actors.Client;
using IDemoActorInterface;
using Newtonsoft.Json;
using Newtonsoft.Json.Linq;
/// <summary>
/// Actor Client class.

View File

@ -5,14 +5,8 @@
namespace ControllerSample
{
using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
using Microsoft.AspNetCore.Hosting;
using Microsoft.Extensions.Configuration;
using Microsoft.Extensions.Hosting;
using Microsoft.Extensions.Logging;
/// <summary>
/// Controller Sample.

View File

@ -5,14 +5,8 @@
namespace RoutingSample
{
using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
using Microsoft.AspNetCore.Hosting;
using Microsoft.Extensions.Configuration;
using Microsoft.Extensions.Hosting;
using Microsoft.Extensions.Logging;
/// <summary>
/// Controller Sample.

View File

@ -11,7 +11,6 @@ namespace GrpcClient
using Google.Protobuf;
using Google.Protobuf.WellKnownTypes;
using Grpc.Core;
using Grpc.Net.Client;
/// <summary>
/// gRPC CLient sample class.

View File

@ -7,7 +7,6 @@ namespace Dapr.Actors.AspNetCore
{
using System;
using System.Buffers;
using System.IO;
using System.Text.Json;
using System.Threading.Tasks;
using Dapr.Actors.Runtime;

View File

@ -7,8 +7,6 @@ namespace Dapr.Actors.Builder
{
using System;
using Dapr.Actors.Client;
using Dapr.Actors.Communication;
using Dapr.Actors.Communication.Client;
internal class ActorProxyGenerator
{

View File

@ -5,9 +5,7 @@
namespace Dapr.Actors.Client
{
using System;
using System.IO;
using System.Text;
using System.Threading;
using System.Threading.Tasks;
using Dapr.Actors.Communication;

View File

@ -6,10 +6,8 @@
namespace Dapr.Actors.Client
{
using System;
using System.Net.Http;
using Dapr.Actors.Builder;
using Dapr.Actors.Communication.Client;
using Dapr.Actors.Runtime;
/// <summary>
/// Represents a factory class to create a proxy to the remote actor objects.

View File

@ -5,8 +5,6 @@
namespace Dapr.Actors.Client
{
using Dapr.Actors.Communication.Client;
/// <summary>
/// Provides the interface for implementation of proxy access for actor service.
/// </summary>

View File

@ -5,8 +5,6 @@
namespace Dapr.Actors.Client
{
using System;
/// <summary>
/// Defines the interface containing methods to create actor proxy factory class.
/// </summary>

View File

@ -10,7 +10,6 @@ namespace Dapr.Actors.Communication
using System.Globalization;
using Dapr.Actors.Builder;
using Dapr.Actors.Resources;
using Dapr.Actors.Runtime;
/// <summary>
/// Actor method dispatcher map for remoting calls.

View File

@ -5,7 +5,6 @@
namespace Dapr.Actors.Communication.Client
{
using System;
using System.IO;
using System.Threading;
using System.Threading.Tasks;

View File

@ -5,7 +5,6 @@
namespace Dapr.Actors.Communication.Client
{
using System;
using System.Threading;
using System.Threading.Tasks;

View File

@ -6,7 +6,6 @@
namespace Dapr.Actors.Communication
{
using System.IO;
using System.Threading.Tasks;
/// <summary>
/// Defines the interface that must be implemented to provide a serializer/deserializer for remoting request message body.

View File

@ -15,7 +15,6 @@ namespace Dapr.Actors.Communication
using System.Text;
using System.Xml;
using Dapr.Actors;
using Dapr.Actors.Communication;
using Dapr.Actors.Resources;
/// <summary>

View File

@ -5,13 +5,10 @@
namespace Dapr.Actors
{
using System;
using System.Collections.Generic;
using System.IO;
using System.Threading;
using System.Threading.Tasks;
using Dapr.Actors.Communication;
using Dapr.Actors.Runtime;
/// <summary>
/// Interface for interacting with Dapr runtime.

View File

@ -7,7 +7,6 @@ namespace Dapr.Actors
{
using System;
using System.Collections.Generic;
using System.Globalization;
using System.Xml;
using Newtonsoft.Json;

View File

@ -6,9 +6,6 @@
namespace Dapr.Actors.Runtime
{
using System;
using System.Globalization;
using System.Threading;
using System.Threading.Tasks;
internal class ActorReminder : IActorReminder
{

View File

@ -10,7 +10,6 @@ namespace Dapr.Actors.Runtime
using System.IO;
using System.Threading;
using System.Threading.Tasks;
using Dapr.Actors.Communication;
/// <summary>
/// Contains methods to register actor types. Registering the types allows the runtime to create instances of the actor.

View File

@ -7,8 +7,6 @@ namespace Dapr.Actors.Runtime
{
using System;
using System.IO;
using System.Reflection;
using System.Threading;
using System.Threading.Tasks;
using Newtonsoft.Json;

View File

@ -8,7 +8,6 @@ namespace Dapr.Actors.Runtime
using System;
using System.Collections.Generic;
using System.IO;
using System.Text;
using System.Threading;
using System.Threading.Tasks;
using Newtonsoft.Json;

View File

@ -6,7 +6,6 @@
namespace Dapr.Actors.Runtime
{
using System;
using System.Collections.Generic;
using System.Globalization;
using System.IO;
using System.Text;

View File

@ -10,7 +10,6 @@ namespace Dapr
using System.Net;
using System.Net.Http;
using System.Net.Http.Headers;
using System.Text;
using System.Text.Json;
using System.Threading;
using System.Threading.Tasks;