Skip to content

Commit 6187769

Browse files
authored
Remove /// <inheritdoc/> from overriden members that can not be resolved by DocFx (#5590)
1 parent 261910e commit 6187769

File tree

1 file changed

+10
-10
lines changed

1 file changed

+10
-10
lines changed

src/core/Akka/Actor/LocalActorRef.cs

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -122,31 +122,31 @@ public override IEnumerable<IActorRef> Children
122122
get { return _cell.GetChildren(); }
123123
}
124124

125-
/// <inheritdoc/>
125+
126126
public override void Start()
127127
{
128128
_cell.Start();
129129
}
130130

131-
/// <inheritdoc/>
131+
132132
public override void Stop()
133133
{
134134
_cell.Stop();
135135
}
136136

137-
/// <inheritdoc/>
137+
138138
public override void Suspend()
139139
{
140140
_cell.Suspend();
141141
}
142142

143-
/// <inheritdoc/>
143+
144144
public override bool IsLocal
145145
{
146146
get { return true; }
147147
}
148148

149-
/// <inheritdoc/>
149+
150150
public override void SendSystemMessage(ISystemMessage message)
151151
{
152152
_cell.SendSystemMessage(message);
@@ -178,21 +178,21 @@ public override ActorPath Path
178178
/// </summary>
179179
protected IInternalActorRef Supervisor => _supervisor;
180180

181-
/// <inheritdoc/>
181+
182182
public override bool IsTerminated => _cell.IsTerminated;
183183

184184
/// <summary>
185185
/// The type of mailbox used by this actor
186186
/// </summary>
187187
protected MailboxType MailboxType { get; }
188188

189-
/// <inheritdoc/>
189+
190190
public override void Resume(Exception causedByFailure = null)
191191
{
192192
_cell.Resume(causedByFailure);
193193
}
194194

195-
/// <inheritdoc/>
195+
196196
public override void Restart(Exception cause)
197197
{
198198
_cell.Restart(cause);
@@ -204,13 +204,13 @@ protected override void TellInternal(object message, IActorRef sender)
204204
_cell.SendMessage(sender, message);
205205
}
206206

207-
/// <inheritdoc/>
207+
208208
public override IInternalActorRef GetSingleChild(string name)
209209
{
210210
return _cell.GetSingleChild(name);
211211
}
212212

213-
/// <inheritdoc/>
213+
214214
public override IActorRef GetChild(IReadOnlyList<string> name)
215215
{
216216
IActorRef current = this;

0 commit comments

Comments
 (0)