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 (#5606)
  • Loading branch information
eaba authored Feb 11, 2022
1 parent 6e1d417 commit 5ecf376
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ public AkkaAssertEqualityComparer(bool skipTypeCheck = false, IEqualityComparer
_innerComparerFactory = () => innerComparer ?? DefaultInnerComparer;
}

/// <inheritdoc/>

public bool Equals(T x, T y)
{
var typeInfo = typeof(T).GetTypeInfo();
Expand Down Expand Up @@ -91,7 +91,7 @@ public bool Equals(T x, T y)
return object.Equals(x, y);
}

/// <inheritdoc/>

public int GetHashCode(T obj) => throw new NotImplementedException();
}
}
Expand Down
2 changes: 1 addition & 1 deletion src/contrib/testkits/Akka.TestKit.Xunit2/TestKit.cs
Original file line number Diff line number Diff line change
Expand Up @@ -128,7 +128,7 @@ protected void InitializeLogger(ActorSystem system)
}
}

/// <inheritdoc/>

public void Dispose()
{
Dispose(true);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -538,7 +538,7 @@ public void Unmute()
// Dispose(false);
//}

/// <inheritdoc/>

public void Dispose()
{
Dispose(true);
Expand Down
2 changes: 1 addition & 1 deletion src/core/Akka/Actor/LocalActorRef.cs
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,7 @@ public override IActorRefProvider Provider
get { return _cell.SystemImpl.Provider; }
}

/// <inheritdoc cref="IInternalActorRef"/>

public override IInternalActorRef Parent
{
get { return _cell.Parent; }
Expand Down

0 comments on commit 5ecf376

Please sign in to comment.