Skip to content

Commit

Permalink
♻️ more internalising
Browse files Browse the repository at this point in the history
  • Loading branch information
fluffynuts committed Apr 16, 2024
1 parent 2709cf6 commit 9aabb43
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 4 deletions.
Original file line number Diff line number Diff line change
@@ -1,9 +1,10 @@
using System;
using PeanutButter.Utils;

#if BUILD_PEANUTBUTTER_INTERNAL
using Imported.PeanutButter.Utils;
namespace Imported.PeanutButter.RandomGenerators;
#else
using PeanutButter.Utils;
namespace PeanutButter.RandomGenerators;
#endif

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,14 +3,15 @@
using System.Diagnostics;
using System.Linq;
using System.Reflection;
using PeanutButter.Utils;

// ReSharper disable UnusedMember.Local
#pragma warning disable 168

#if BUILD_PEANUTBUTTER_INTERNAL
using Imported.PeanutButter.Utils;
namespace Imported.PeanutButter.RandomGenerators;
#else
using PeanutButter.Utils;
namespace PeanutButter.RandomGenerators;
#endif

Expand Down
Original file line number Diff line number Diff line change
@@ -1,10 +1,11 @@
using System;
using System.Linq;
using PeanutButter.Utils;

#if BUILD_PEANUTBUTTER_INTERNAL
using Imported.PeanutButter.Utils;
namespace Imported.PeanutButter.RandomGenerators;
#else
using PeanutButter.Utils;
namespace PeanutButter.RandomGenerators;
#endif

Expand Down
Original file line number Diff line number Diff line change
@@ -1,12 +1,13 @@
using System;
using System.Collections.Generic;
using PeanutButter.Utils;

#if BUILD_PEANUTBUTTER_INTERNAL
using Imported.PeanutButter.Utils;
using static Imported.PeanutButter.RandomGenerators.RandomValueGen;

namespace Imported.PeanutButter.RandomGenerators;
#else
using PeanutButter.Utils;
using static PeanutButter.RandomGenerators.RandomValueGen;

namespace PeanutButter.RandomGenerators;
Expand Down

0 comments on commit 9aabb43

Please sign in to comment.