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.GCounter.cs #5625

Merged
merged 3 commits into from
Feb 11, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
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
8 changes: 4 additions & 4 deletions src/contrib/cluster/Akka.DistributedData/GCounter.cs
Original file line number Diff line number Diff line change
Expand Up @@ -183,10 +183,10 @@ public GCounter Prune(UniqueAddress removedNode, UniqueAddress collapseInto)
/// <returns>TBD</returns>
public GCounter PruningCleanup(UniqueAddress removedNode) => new GCounter(State.Remove(removedNode));

/// <inheritdoc/>

public override int GetHashCode() => State.GetHashCode();

/// <inheritdoc/>

public bool Equals(GCounter other)
{
if (ReferenceEquals(other, null)) return false;
Expand All @@ -195,10 +195,10 @@ public bool Equals(GCounter other)
return State.SequenceEqual(other.State);
}

/// <inheritdoc/>

public override bool Equals(object obj) => obj is GCounter counter && Equals(counter);

/// <inheritdoc/>

public override string ToString() => $"GCounter({Value})";

/// <summary>
Expand Down
8 changes: 4 additions & 4 deletions src/contrib/cluster/Akka.DistributedData/GSet.cs
Original file line number Diff line number Diff line change
Expand Up @@ -158,13 +158,13 @@ public bool Equals(GSet<T> other)
return Elements.SetEquals(other.Elements);
}

/// <inheritdoc/>

public IEnumerator<T> GetEnumerator() => Elements.GetEnumerator();

/// <inheritdoc/>

public override bool Equals(object obj) => obj is GSet<T> && Equals((GSet<T>)obj);

/// <inheritdoc/>

public override int GetHashCode()
{
unchecked
Expand All @@ -186,7 +186,7 @@ public override int GetHashCode()

IEnumerator IEnumerable.GetEnumerator() => GetEnumerator();

/// <inheritdoc/>

public override string ToString()
{
var sb = new StringBuilder("GSet(");
Expand Down