Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 4 additions & 8 deletions src/core/Akka.Streams/ActorMaterializer.cs
Original file line number Diff line number Diff line change
Expand Up @@ -191,8 +191,7 @@ private static ActorSystem ActorSystemOf(IActorRefFactory context)
/// <returns>The newly created logging adapter.</returns>
public abstract ILoggingAdapter MakeLogger(object logSource);

/// <inheritdoc/>
public void Dispose() => Shutdown();
public void Dispose() => Shutdown();
}

/// <summary>
Expand Down Expand Up @@ -699,8 +698,7 @@ public StreamSubscriptionTimeoutSettings(StreamSubscriptionTimeoutTerminationMod
Mode = mode;
Timeout = timeout;
}

/// <inheritdoc/>

public override bool Equals(object obj)
{
if (ReferenceEquals(obj, null))
Expand All @@ -712,12 +710,11 @@ public override bool Equals(object obj)

return false;
}

/// <inheritdoc/>

public bool Equals(StreamSubscriptionTimeoutSettings other)
=> Mode == other.Mode && Timeout.Equals(other.Timeout);

/// <inheritdoc/>

public override int GetHashCode()
{
unchecked
Expand All @@ -726,7 +723,6 @@ public override int GetHashCode()
}
}

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

Expand Down