-
Notifications
You must be signed in to change notification settings - Fork 1k
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
[WARNING] CS0628: new protected member declared in sealed type
#6626
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -1612,7 +1612,7 @@ namespace Akka.Actor | |
public sealed class SchedulerException : Akka.Actor.AkkaException | ||
{ | ||
public SchedulerException(string message) { } | ||
protected SchedulerException(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context) { } | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Make all of these public |
||
public SchedulerException(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context) { } | ||
} | ||
public class static SchedulerExtensions | ||
{ | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -12,7 +12,7 @@ namespace Akka.Streams | |
public sealed class AbruptStageTerminationException : System.Exception | ||
{ | ||
public AbruptStageTerminationException(Akka.Streams.Stage.GraphStageLogic logic) { } | ||
protected AbruptStageTerminationException(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context) { } | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. removed @Aaronontheweb |
||
public AbruptStageTerminationException(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context) { } | ||
} | ||
public class AbruptTerminationException : System.Exception | ||
{ | ||
|
@@ -1804,7 +1804,7 @@ namespace Akka.Streams.Dsl | |
public sealed class PartitionOutOfBoundsException : System.Exception | ||
{ | ||
public PartitionOutOfBoundsException(string message) { } | ||
protected PartitionOutOfBoundsException(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context) { } | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. removed @Aaronontheweb |
||
public PartitionOutOfBoundsException(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context) { } | ||
} | ||
public class PartitionWith<TIn, TOut0, TOut1> : Akka.Streams.Stage.GraphStage<Akka.Streams.FanOutShape<TIn, TOut0, TOut1>> | ||
{ | ||
|
@@ -2393,7 +2393,7 @@ namespace Akka.Streams.Dsl | |
public sealed class TcpIdleTimeoutException : System.TimeoutException | ||
{ | ||
public TcpIdleTimeoutException(string message, System.TimeSpan duration) { } | ||
protected TcpIdleTimeoutException(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context) { } | ||
public TcpIdleTimeoutException(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context) { } | ||
public System.TimeSpan Duration { get; } | ||
} | ||
public class static TcpStreamExtensions | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -329,7 +329,7 @@ public EndpointDisassociatedException(string message) | |
/// </summary> | ||
/// <param name="info">The <see cref="SerializationInfo"/> that holds the serialized object data about the exception being thrown.</param> | ||
/// <param name="context">The <see cref="StreamingContext"/> that contains contextual information about the source or destination.</param> | ||
protected EndpointDisassociatedException(SerializationInfo info, StreamingContext context) | ||
public EndpointDisassociatedException(SerializationInfo info, StreamingContext context) | ||
: base(info, context) | ||
{ | ||
} | ||
|
@@ -361,7 +361,7 @@ public EndpointAssociationException(string message, Exception innerException) : | |
/// </summary> | ||
/// <param name="info">The <see cref="SerializationInfo"/> that holds the serialized object data about the exception being thrown.</param> | ||
/// <param name="context">The <see cref="StreamingContext"/> that contains contextual information about the source or destination.</param> | ||
protected EndpointAssociationException(SerializationInfo info, StreamingContext context) | ||
EndpointAssociationException(SerializationInfo info, StreamingContext context) | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I have removed that |
||
: base(info, context) | ||
{ | ||
} | ||
|
@@ -386,7 +386,7 @@ public OversizedPayloadException(string message) | |
/// </summary> | ||
/// <param name="info">The <see cref="SerializationInfo"/> that holds the serialized object data about the exception being thrown.</param> | ||
/// <param name="context">The <see cref="StreamingContext"/> that contains contextual information about the source or destination.</param> | ||
protected OversizedPayloadException(SerializationInfo info, StreamingContext context) | ||
OversizedPayloadException(SerializationInfo info, StreamingContext context) | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I have removed that |
||
: base(info, context) | ||
{ | ||
} | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
removed @Aaronontheweb
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I think that needs to be made public, probably