Skip to content

Commit

Permalink
Code cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
devedse committed Nov 24, 2023
1 parent 096cf04 commit 824e2f4
Show file tree
Hide file tree
Showing 7 changed files with 5 additions and 13 deletions.
2 changes: 0 additions & 2 deletions DeveMazeGeneratorCore.Benchmark/MazeBenchmarkJob.cs
Original file line number Diff line number Diff line change
@@ -1,7 +1,5 @@
using BenchmarkDotNet.Attributes;
using BenchmarkDotNet.Columns;
using BenchmarkDotNet.Configs;
using BenchmarkDotNet.Environments;
using BenchmarkDotNet.Jobs;
using BenchmarkDotNet.Reports;
using DeveMazeGeneratorCore.Factories;
Expand Down
5 changes: 1 addition & 4 deletions DeveMazeGeneratorCore.Benchmark/Program.cs
Original file line number Diff line number Diff line change
@@ -1,7 +1,4 @@
using BenchmarkDotNet.Configs;
using BenchmarkDotNet.Jobs;
using BenchmarkDotNet.Reports;
using BenchmarkDotNet.Running;
using BenchmarkDotNet.Running;
using System;

namespace DeveMazeGeneratorCore.Benchmark
Expand Down
2 changes: 1 addition & 1 deletion DeveMazeGeneratorCore.Tests/Generators/MazeSamples.cs
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ public void GeneratingAMazeWithABlockInTheMiddleWorks()
var randomFactory = new RandomFactory<NetRandom>();

var algorithm = new AlgorithmBacktrack();
var generatedMap = algorithm.GoGenerate(128, 128, 1337, mapFactory, randomFactory, new NoAction());
var generatedMap = algorithm.GoGenerate(128, 128, 1337, mapFactory, randomFactory, new NoAction());

var path = PathFinderDepthFirstSmartWithPos.GoFind(map, null);

Expand Down
1 change: 0 additions & 1 deletion DeveMazeGeneratorCore.Web/Controllers/MazesController.cs
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,6 @@
using SixLabors.ImageSharp.PixelFormats;
using SixLabors.ImageSharp.Processing;
using System;
using System.Collections.Concurrent;
using System.Collections.Generic;
using System.Diagnostics;
using System.IO;
Expand Down
1 change: 0 additions & 1 deletion DeveMazeGeneratorCore/ExtensionMethods/ListRandomizer.cs
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
using DeveMazeGeneratorCore.Generators.Helpers;
using System;
using System.Collections.Generic;
using System.Linq;

Expand Down
6 changes: 3 additions & 3 deletions DeveMazeGeneratorCore/Generators/AlgorithmDivisionDynamic.cs
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
using System;
using System.Collections.Generic;
using DeveMazeGeneratorCore.Factories;
using DeveMazeGeneratorCore.Factories;
using DeveMazeGeneratorCore.Generators.SpeedOptimization;
using DeveMazeGeneratorCore.Helpers;
using DeveMazeGeneratorCore.InnerMaps;
using DeveMazeGeneratorCore.Mazes;
using DeveMazeGeneratorCore.Structures;
using System;
using System.Collections.Generic;

namespace DeveMazeGeneratorCore.Generators
{
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
using DeveMazeGeneratorCore.InnerMaps.InnerStuff;
using System;
using System.Runtime.CompilerServices;

namespace DeveMazeGeneratorCore.InnerMaps
Expand Down

0 comments on commit 824e2f4

Please sign in to comment.