Skip to content

Commit

Permalink
Move using statements.
Browse files Browse the repository at this point in the history
Signed-off-by: Phillip Hoff <[email protected]>
  • Loading branch information
philliphoff committed Nov 30, 2023
1 parent b42717b commit fb016d0
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 13 deletions.
14 changes: 7 additions & 7 deletions src/Dapr.Actors/Client/ActorProxyFactory.cs
Original file line number Diff line number Diff line change
Expand Up @@ -11,15 +11,15 @@
// limitations under the License.
// ------------------------------------------------------------------------

using System;
using System.Globalization;
using System.Net.Http;
using Dapr.Actors.Builder;
using Dapr.Actors.Communication;
using Dapr.Actors.Communication.Client;

namespace Dapr.Actors.Client
{
using System;
using System.Globalization;
using System.Net.Http;
using Dapr.Actors.Builder;
using Dapr.Actors.Communication;
using Dapr.Actors.Communication.Client;

/// <summary>
/// Represents a factory class to create a proxy to the remote actor objects.
/// </summary>
Expand Down
12 changes: 6 additions & 6 deletions test/Dapr.Actors.Test/ActorProxyTests.cs
Original file line number Diff line number Diff line change
Expand Up @@ -11,14 +11,14 @@
// limitations under the License.
// ------------------------------------------------------------------------

using System;
using System.Text.Json;
using Dapr.Actors.Test;
using FluentAssertions;
using Xunit;

namespace Dapr.Actors.Client
{
using System;
using System.Text.Json;
using Dapr.Actors.Test;
using FluentAssertions;
using Xunit;

/// <summary>
/// Test class for Actor Code builder.
/// </summary>
Expand Down

0 comments on commit fb016d0

Please sign in to comment.