Skip to content

Commit

Permalink
Minor Changes
Browse files Browse the repository at this point in the history
  • Loading branch information
Taiizor committed Dec 18, 2024
1 parent 0fe3cc7 commit aa41418
Show file tree
Hide file tree
Showing 4 changed files with 3 additions and 6 deletions.
4 changes: 2 additions & 2 deletions benchmark/UUID.Benchmarks/UUIDBenchmarks.cs
Original file line number Diff line number Diff line change
Expand Up @@ -88,13 +88,13 @@ public UUID Convert_FromGuid()
[Benchmark]
public Guid Convert_ToGuid_Implicit()
{
return _uuid; // Implicit conversion
return _uuid;
}

[Benchmark]
public UUID Convert_FromGuid_Implicit()
{
return _guid; // Implicit conversion
return _guid;
}

[Benchmark]
Expand Down
2 changes: 0 additions & 2 deletions demo/UUID.Demo/Program.cs
Original file line number Diff line number Diff line change
@@ -1,5 +1,3 @@
using System.Extensions;

namespace UUIDDemo
{
class Program
Expand Down
2 changes: 1 addition & 1 deletion src/UUID/Extensions/ArrayExtension.cs
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

using System.Security.Cryptography;

namespace System.Extensions
namespace System
{
/// <summary>
/// Provides extension methods for efficient bulk operations on UUID arrays.
Expand Down
1 change: 0 additions & 1 deletion test/UUID.Tests/ArrayExtensionTests.cs
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
using System;
using System.Collections.Generic;
using System.Extensions;
using System.Linq;
using Xunit;

Expand Down

0 comments on commit aa41418

Please sign in to comment.