Skip to content

Commit 92f9169

Browse files
authored
Deleted inheritdoc for external assembly in Akka.Streams.Dsl.RestartFlow.cs (#5574)
1 parent b9f19d9 commit 92f9169

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

src/core/Akka.Streams/Dsl/RestartFlow.cs

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -438,16 +438,16 @@ public Delay(TimeSpan duration)
438438
Duration = duration;
439439
}
440440

441-
/// <inheritdoc/>
441+
442442
public bool Equals(Delay other) => !ReferenceEquals(other, null) && Equals(Duration, other.Duration);
443443

444-
/// <inheritdoc/>
444+
445445
public override bool Equals(object obj) => obj is Delay && Equals((Delay)obj);
446446

447-
/// <inheritdoc/>
447+
448448
public override int GetHashCode() => Duration.GetHashCode();
449449

450-
/// <inheritdoc/>
450+
451451
public override string ToString() => $"Duration({Duration})";
452452
}
453453
}

0 commit comments

Comments
 (0)