Skip to content

Commit

Permalink
Rollback
Browse files Browse the repository at this point in the history
  • Loading branch information
Corniel committed Sep 8, 2024
1 parent 0cf4d8e commit fb8b52f
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 11 deletions.
7 changes: 0 additions & 7 deletions src/Buildalyzer/Extensions/String.cs

This file was deleted.

4 changes: 0 additions & 4 deletions src/Buildalyzer/IO/IOPath.cs
Original file line number Diff line number Diff line change
Expand Up @@ -52,10 +52,6 @@ public override bool Equals([NotNullWhen(true)] object? obj)
public bool Equals(IOPath other, bool caseSensitive)
=> string.Equals(_path, other._path, caseSensitive ? StringComparison.Ordinal : StringComparison.OrdinalIgnoreCase);

public static bool operator ==(IOPath left, IOPath right) => left.Equals(right);

public static bool operator !=(IOPath left, IOPath right) => !(left == right);

/// <inheritdoc />
[Pure]
public override int GetHashCode()
Expand Down

0 comments on commit fb8b52f

Please sign in to comment.