Skip to content

Commit f1e7f1b

Browse files
[rel/3.7] Remove non-working <inheritdoc /> (#4669)
Co-authored-by: Amaury Levé <[email protected]>
1 parent 2fe6648 commit f1e7f1b

File tree

2 files changed

+0
-4
lines changed

2 files changed

+0
-4
lines changed

src/Platform/Microsoft.Testing.Platform/CommandLine/ArgumentArity.cs

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -68,11 +68,9 @@ public readonly struct ArgumentArity(int min, int max) : IEquatable<ArgumentArit
6868
public bool Equals(ArgumentArity other)
6969
=> Min == other.Min && Max == other.Max;
7070

71-
/// <inheritdoc/>
7271
public override bool Equals(object? obj)
7372
=> obj is ArgumentArity argumentArity && Equals(argumentArity);
7473

75-
/// <inheritdoc/>
7674
public override int GetHashCode() =>
7775
#if NET
7876
HashCode.Combine(Min, Max);

src/Platform/Microsoft.Testing.Platform/CommandLine/CommandLineOption.cs

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,6 @@ public CommandLineOption(string name, string description, ArgumentArity arity, b
8080

8181
internal bool IsBuiltIn { get; }
8282

83-
/// <inheritdoc/>
8483
public override bool Equals(object? obj) => Equals(obj as CommandLineOption);
8584

8685
/// <inheritdoc/>
@@ -91,7 +90,6 @@ public bool Equals(CommandLineOption? other)
9190
Arity == other.Arity &&
9291
IsHidden == other.IsHidden;
9392

94-
/// <inheritdoc/>
9593
public override int GetHashCode()
9694
{
9795
HashCode hc = default;

0 commit comments

Comments
 (0)