Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Deleted inheritdoc on external assemble's methods #5573

Merged
merged 1 commit into from
Feb 4, 2022
Merged
Show file tree
Hide file tree
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
Binary file removed output.txt
Binary file not shown.
14 changes: 7 additions & 7 deletions src/core/Akka.Streams/Shape.cs
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ public abstract class Inlet : InPort
/// <returns>TBD</returns>
public abstract Inlet CarbonCopy();

/// <inheritdoc/>

public sealed override string ToString() => Name;
}

Expand Down Expand Up @@ -138,7 +138,7 @@ public abstract class Outlet : OutPort
/// <returns>TBD</returns>
public abstract Outlet CarbonCopy();

/// <inheritdoc/>

public sealed override string ToString() => Name;
}

Expand Down Expand Up @@ -228,7 +228,7 @@ public bool HasSamePortsAs(Shape shape)
/// <returns>TBD</returns>
public object Clone() => DeepCopy();

/// <inheritdoc/>

public sealed override string ToString() => $"{GetType().Name}([{string.Join(", ", Inlets)}] [{string.Join(", ", Outlets)}])";
}

Expand Down Expand Up @@ -386,7 +386,7 @@ public override Shape CopyFromPorts(ImmutableArray<Inlet> inlets, ImmutableArray
return new SourceShape<TOut>(outlets[0] as Outlet<TOut>);
}

/// <inheritdoc/>

public override bool Equals(object obj)
{
if (ReferenceEquals(null, obj))
Expand All @@ -400,7 +400,7 @@ public override bool Equals(object obj)
/// <inheritdoc/>
private bool Equals(SourceShape<TOut> other) => Outlet.Equals(other.Outlet);

/// <inheritdoc/>

public override int GetHashCode() => Outlet.GetHashCode();
}

Expand Down Expand Up @@ -555,7 +555,7 @@ public override Shape CopyFromPorts(ImmutableArray<Inlet> inlets, ImmutableArray
return new SinkShape<TIn>(inlets[0] as Inlet<TIn>);
}

/// <inheritdoc/>

public override bool Equals(object obj)
{
if (ReferenceEquals(null, obj))
Expand All @@ -568,7 +568,7 @@ public override bool Equals(object obj)

private bool Equals(SinkShape<TIn> other) => Equals(Inlet, other.Inlet);

/// <inheritdoc/>

public override int GetHashCode() => Inlet.GetHashCode();
}

Expand Down