Skip to content

Commit

Permalink
Remove 'inheritdoc` from overriden members that can not be resolved b…
Browse files Browse the repository at this point in the history
…y DocFx (#5635)
  • Loading branch information
eaba authored Feb 10, 2022
1 parent ec1c83a commit dc88ac6
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions src/contrib/cluster/Akka.DistributedData/VersionVector.cs
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ public static VersionVector Create(ImmutableDictionary<UniqueAddress, long> vers

public abstract VersionVector PruningCleanup(UniqueAddress removedNode);

/// <inheritdoc/>

public bool Equals(VersionVector other)
{
if (ReferenceEquals(other, null)) return false;
Expand All @@ -102,7 +102,7 @@ public bool Equals(VersionVector other)
return CompareOnlyTo(other, Ordering.Same) == Ordering.Same;
}

/// <inheritdoc/>

public override bool Equals(object obj) => obj is VersionVector vector && Equals(vector);

/// <summary>
Expand Down Expand Up @@ -229,7 +229,7 @@ public Enumerator(UniqueAddress node, long version)
Current = new KeyValuePair<UniqueAddress, long>(node, version);
}

/// <inheritdoc/>

public void Dispose() { }

public bool MoveNext()
Expand Down Expand Up @@ -400,11 +400,11 @@ public override VersionVector Prune(UniqueAddress removedNode, UniqueAddress col
public override VersionVector PruningCleanup(UniqueAddress removedNode) =>
new MultiVersionVector(Versions.Remove(removedNode));

/// <inheritdoc/>

public override string ToString() =>
$"VersionVector({string.Join(";", Versions.Select(kv => $"({kv.Key}->{kv.Value})"))})";

/// <inheritdoc/>

public override int GetHashCode()
{
unchecked
Expand Down

0 comments on commit dc88ac6

Please sign in to comment.