diff --git a/src/Dapr.Actors/Client/ActorProxyFactory.cs b/src/Dapr.Actors/Client/ActorProxyFactory.cs index 4fc2224a3..399b0aa0a 100644 --- a/src/Dapr.Actors/Client/ActorProxyFactory.cs +++ b/src/Dapr.Actors/Client/ActorProxyFactory.cs @@ -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; - /// /// Represents a factory class to create a proxy to the remote actor objects. /// diff --git a/test/Dapr.Actors.Test/ActorProxyTests.cs b/test/Dapr.Actors.Test/ActorProxyTests.cs index b5db3e3fe..da19d35fb 100644 --- a/test/Dapr.Actors.Test/ActorProxyTests.cs +++ b/test/Dapr.Actors.Test/ActorProxyTests.cs @@ -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; - /// /// Test class for Actor Code builder. ///