Skip to content

Commit

Permalink
Deleted inheritdoc for external assembly in `Akka.Streams.Implement…
Browse files Browse the repository at this point in the history
…ation.StreamLayout.cs` (#5575)
  • Loading branch information
eaba authored Feb 4, 2022
1 parent 92f9169 commit 553d206
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/core/Akka.Streams/Implementation/StreamLayout.cs
Original file line number Diff line number Diff line change
Expand Up @@ -877,7 +877,7 @@ public virtual IModule Nest()
/// <returns>TBD</returns>
public abstract IModule WithAttributes(Attributes attributes);

/// <inheritdoc/>

public int CompareTo(IModule other) => GetHashCode().CompareTo(other.GetHashCode());
}

Expand Down Expand Up @@ -1087,7 +1087,7 @@ public override IModule WithAttributes(Attributes attributes)
return this;
}

/// <inheritdoc/>

public override string ToString() => $"{GetHashCode()} copy of {CopyOf}";
}

Expand Down Expand Up @@ -1202,7 +1202,7 @@ public static CompositeModule Create(Module module, Shape shape)
);
}

/// <inheritdoc/>

public override string ToString()
{
return $"\n CompositeModule [{GetHashCode()}%08x]" +
Expand Down Expand Up @@ -1448,7 +1448,7 @@ public override IModule WithAttributes(Attributes attributes)
new FusedModule(SubModules, Shape, Downstreams, Upstreams, MaterializedValueComputation, attributes,
Info);

/// <inheritdoc/>

public override string ToString()
{
return $"\n Name: {Attributes.GetNameOrDefault("unnamed")}" +
Expand Down

0 comments on commit 553d206

Please sign in to comment.