Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Docs: Fix unresolved base documentaion WARNINGS in Akka.DistributedData.VersionVector.cs #5635

Merged
merged 2 commits into from
Feb 10, 2022
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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