Skip to content

Commit

Permalink
Change namespace to Vlingo.Xoom.Common and adjusting imports
Browse files Browse the repository at this point in the history
  • Loading branch information
tjaskula committed Apr 22, 2021
1 parent 4f823d7 commit d805296
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 8 deletions.
2 changes: 1 addition & 1 deletion src/Vlingo.Actors.Tests/ActorProxyBaseTest.cs
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@

using System;
using Newtonsoft.Json;
using Vlingo.Common.Serialization;
using Vlingo.Xoom.Common.Serialization;
using Xunit;

namespace Vlingo.Actors.Tests
Expand Down
4 changes: 2 additions & 2 deletions src/Vlingo.Actors/ActorProxy.cs
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@
using System.Linq;
using System.Reflection;
using System.Runtime.CompilerServices;
using Vlingo.Common.Compiler;
using static Vlingo.Common.Compiler.DynaNaming;
using Vlingo.Xoom.Common.Compiler;
using static Vlingo.Xoom.Common.Compiler.DynaNaming;

namespace Vlingo.Actors
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
// one at https://mozilla.org/MPL/2.0/.

using System;
using Vlingo.Common.Compiler;
using Vlingo.Xoom.Common.Compiler;

namespace Vlingo.Actors.Plugin.Supervision
{
Expand Down
2 changes: 1 addition & 1 deletion src/Vlingo.Actors/ProxyGenerator.cs
Original file line number Diff line number Diff line change
Expand Up @@ -150,7 +150,7 @@ private string ImportStatements()
namespaces.Add("System.Collections.Generic");
namespaces.Add("System.Threading.Tasks");
namespaces.Add(typeof(Actor).Namespace!);
namespaces.Add(typeof(AtomicBoolean).Namespace!); // Vlingo.Common
namespaces.Add(typeof(AtomicBoolean).Namespace!); // Vlingo.Xoom.Common

return string.Join("\n", namespaces.Select(x => $"using {x};"));

Expand Down
5 changes: 2 additions & 3 deletions src/Vlingo.Actors/Scheduled__Proxy.cs
Original file line number Diff line number Diff line change
@@ -1,12 +1,11 @@
using System;
using Vlingo.Actors;
using Vlingo.Xoom.Common;

namespace Vlingo.Common
namespace Vlingo.Xoom.Common
{
public class Scheduled__Proxy<T> : IScheduled<T>
{
private const string IntervalSignalRepresentation1 = "IntervalSignal(Vlingo.Common.IScheduled<T>, T)";
private const string IntervalSignalRepresentation1 = "IntervalSignal(Vlingo.Xoom.Common.IScheduled<T>, T)";

private readonly Actor _actor;
private readonly IMailbox _mailbox;
Expand Down

0 comments on commit d805296

Please sign in to comment.