Skip to content

Commit

Permalink
Deleted inheritdoc for external assembly in `Akka.Streams.Dsl.Resta…
Browse files Browse the repository at this point in the history
…rtFlow.cs` (#5574)
  • Loading branch information
eaba authored Feb 4, 2022
1 parent b9f19d9 commit 92f9169
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/core/Akka.Streams/Dsl/RestartFlow.cs
Original file line number Diff line number Diff line change
Expand Up @@ -438,16 +438,16 @@ public Delay(TimeSpan duration)
Duration = duration;
}

/// <inheritdoc/>

public bool Equals(Delay other) => !ReferenceEquals(other, null) && Equals(Duration, other.Duration);

/// <inheritdoc/>

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

/// <inheritdoc/>

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

/// <inheritdoc/>

public override string ToString() => $"Duration({Duration})";
}
}
Expand Down

0 comments on commit 92f9169

Please sign in to comment.