Skip to content

Commit

Permalink
Clean namespaces.
Browse files Browse the repository at this point in the history
  • Loading branch information
koculu committed Aug 26, 2022
1 parent da905ec commit 87d823a
Show file tree
Hide file tree
Showing 14 changed files with 16 additions and 10 deletions.
4 changes: 2 additions & 2 deletions src/Playground/Benchmark/TestConfig.cs
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
using Tenray.ZoneTree;
using Tenray.ZoneTree.Core;
using Tenray.ZoneTree.Core;
using Tenray.ZoneTree.Options;

namespace Playground.Benchmark;

Expand Down
1 change: 0 additions & 1 deletion src/Playground/Benchmark/ZoneTreeBenchmarks.cs
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
using BenchmarkDotNet.Attributes;
using BenchmarkDotNet.Diagnosers;
using BenchmarkDotNet.Engines;
using Tenray.ZoneTree;
using Tenray.ZoneTree.Core;
using Tenray.ZoneTree.Options;

Expand Down
1 change: 0 additions & 1 deletion src/Playground/Program.cs
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@
using Playground;
using Playground.Benchmark;
using Playground.InMemoryTreeBenchmark;
using Tenray.ZoneTree;
using Tenray.ZoneTree.Core;
using Tenray.ZoneTree.Logger;
using Tenray.ZoneTree.Options;
Expand Down
1 change: 1 addition & 0 deletions src/ZoneTree/Compression/DataCompression.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
using System.IO.Compression;
using Tenray.ZoneTree.Options;

namespace Tenray.ZoneTree.Compression;

Expand Down
4 changes: 2 additions & 2 deletions src/ZoneTree/Directory.Build.props
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@
<Authors>Ahmed Yasin Koculu</Authors>
<PackageId>ZoneTree</PackageId>
<Title>ZoneTree</Title>
<ProductVersion>1.4.2.0</ProductVersion>
<Version>1.4.2.0</Version>
<ProductVersion>1.4.3.0</ProductVersion>
<Version>1.4.3.0</Version>
<Authors>Ahmed Yasin Koculu</Authors>
<AssemblyTitle>ZoneTree</AssemblyTitle>
<Description>ZoneTree is a persistent, high-performance, transactional, ACID-compliant ordered key-value database for NET. It can operate in memory or on local/cloud storage.</Description>
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
namespace Tenray.ZoneTree.Exceptions;
using Tenray.ZoneTree.Options;

namespace Tenray.ZoneTree.Exceptions;

public class CompressionLevelIsOutOfRangeException : ZoneTreeException
{
Expand Down
2 changes: 1 addition & 1 deletion src/ZoneTree/Options/CompressionLevels.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
namespace Tenray.ZoneTree;
namespace Tenray.ZoneTree.Options;

/// <summary>
/// Compression levels for available compression methods.
Expand Down
2 changes: 1 addition & 1 deletion src/ZoneTree/Options/CompressionMethod.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
namespace Tenray.ZoneTree;
namespace Tenray.ZoneTree.Options;

/// <summary>
/// Available compression methods.
Expand Down
2 changes: 1 addition & 1 deletion src/ZoneTree/Options/DiskSegmentMode.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
namespace Tenray.ZoneTree;
namespace Tenray.ZoneTree.Options;

/// <summary>
/// Available Disk Segment Modes.
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
using System.Text;
using Tenray.ZoneTree.AbstractFileStream;
using Tenray.ZoneTree.Logger;
using Tenray.ZoneTree.Options;

namespace Tenray.ZoneTree.Segments.Disk;

Expand Down
1 change: 1 addition & 0 deletions src/ZoneTree/Segments/Disk/DecompressedBlock.cs
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
using System.IO.Compression;
using Tenray.ZoneTree.Compression;
using Tenray.ZoneTree.Options;

namespace Tenray.ZoneTree.Segments.Disk;

Expand Down
1 change: 1 addition & 0 deletions src/ZoneTree/Segments/Disk/IRandomAccessDeviceManager.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
using Tenray.ZoneTree.AbstractFileStream;
using Tenray.ZoneTree.Options;

namespace Tenray.ZoneTree.Segments.Disk;

Expand Down
1 change: 1 addition & 0 deletions src/ZoneTree/Segments/Disk/RandomAccessDeviceManager.cs
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
using Tenray.ZoneTree.AbstractFileStream;
using Tenray.ZoneTree.Logger;
using Tenray.ZoneTree.Options;

namespace Tenray.ZoneTree.Segments.Disk;

Expand Down
1 change: 1 addition & 0 deletions src/ZoneTree/WAL/CompressedFileStream.cs
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
using System.Text;
using Tenray.ZoneTree.AbstractFileStream;
using Tenray.ZoneTree.Logger;
using Tenray.ZoneTree.Options;
using Tenray.ZoneTree.Segments.Disk;
using Tenray.ZoneTree.Serializers;

Expand Down

0 comments on commit 87d823a

Please sign in to comment.