Skip to content

Commit 906142a

Browse files
eabaAaronontheweb
andauthored
Deleted inheritdoc for external assembly in Akka.Streams.ActorMaterializer.cs (#5572)
Co-authored-by: Aaron Stannard <[email protected]>
1 parent 5675630 commit 906142a

File tree

1 file changed

+4
-8
lines changed

1 file changed

+4
-8
lines changed

src/core/Akka.Streams/ActorMaterializer.cs

Lines changed: 4 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -191,8 +191,7 @@ private static ActorSystem ActorSystemOf(IActorRefFactory context)
191191
/// <returns>The newly created logging adapter.</returns>
192192
public abstract ILoggingAdapter MakeLogger(object logSource);
193193

194-
/// <inheritdoc/>
195-
public void Dispose() => Shutdown();
194+
public void Dispose() => Shutdown();
196195
}
197196

198197
/// <summary>
@@ -699,8 +698,7 @@ public StreamSubscriptionTimeoutSettings(StreamSubscriptionTimeoutTerminationMod
699698
Mode = mode;
700699
Timeout = timeout;
701700
}
702-
703-
/// <inheritdoc/>
701+
704702
public override bool Equals(object obj)
705703
{
706704
if (ReferenceEquals(obj, null))
@@ -712,12 +710,11 @@ public override bool Equals(object obj)
712710

713711
return false;
714712
}
715-
716-
/// <inheritdoc/>
713+
717714
public bool Equals(StreamSubscriptionTimeoutSettings other)
718715
=> Mode == other.Mode && Timeout.Equals(other.Timeout);
719716

720-
/// <inheritdoc/>
717+
721718
public override int GetHashCode()
722719
{
723720
unchecked
@@ -726,7 +723,6 @@ public override int GetHashCode()
726723
}
727724
}
728725

729-
/// <inheritdoc/>
730726
public override string ToString() => $"StreamSubscriptionTimeoutSettings<{Mode}, {Timeout}>";
731727
}
732728

0 commit comments

Comments
 (0)