Skip to content

Commit

Permalink
Remove /// <inheritdoc/> from overriden members that can not be res…
Browse files Browse the repository at this point in the history
…olved by DocFx (#5590)
  • Loading branch information
eaba committed Feb 8, 2022
1 parent 261910e commit 6187769
Showing 1 changed file with 10 additions and 10 deletions.
20 changes: 10 additions & 10 deletions src/core/Akka/Actor/LocalActorRef.cs
Expand Up @@ -122,31 +122,31 @@ public override IEnumerable<IActorRef> Children
get { return _cell.GetChildren(); }
}

/// <inheritdoc/>

public override void Start()
{
_cell.Start();
}

/// <inheritdoc/>

public override void Stop()
{
_cell.Stop();
}

/// <inheritdoc/>

public override void Suspend()
{
_cell.Suspend();
}

/// <inheritdoc/>

public override bool IsLocal
{
get { return true; }
}

/// <inheritdoc/>

public override void SendSystemMessage(ISystemMessage message)
{
_cell.SendSystemMessage(message);
Expand Down Expand Up @@ -178,21 +178,21 @@ public override ActorPath Path
/// </summary>
protected IInternalActorRef Supervisor => _supervisor;

/// <inheritdoc/>

public override bool IsTerminated => _cell.IsTerminated;

/// <summary>
/// The type of mailbox used by this actor
/// </summary>
protected MailboxType MailboxType { get; }

/// <inheritdoc/>

public override void Resume(Exception causedByFailure = null)
{
_cell.Resume(causedByFailure);
}

/// <inheritdoc/>

public override void Restart(Exception cause)
{
_cell.Restart(cause);
Expand All @@ -204,13 +204,13 @@ protected override void TellInternal(object message, IActorRef sender)
_cell.SendMessage(sender, message);
}

/// <inheritdoc/>

public override IInternalActorRef GetSingleChild(string name)
{
return _cell.GetSingleChild(name);
}

/// <inheritdoc/>

public override IActorRef GetChild(IReadOnlyList<string> name)
{
IActorRef current = this;
Expand Down

0 comments on commit 6187769

Please sign in to comment.