File tree Expand file tree Collapse file tree 1 file changed +4
-8
lines changed Expand file tree Collapse file tree 1 file changed +4
-8
lines changed Original file line number Diff line number Diff line change @@ -191,8 +191,7 @@ private static ActorSystem ActorSystemOf(IActorRefFactory context)
191
191
/// <returns>The newly created logging adapter.</returns>
192
192
public abstract ILoggingAdapter MakeLogger ( object logSource ) ;
193
193
194
- /// <inheritdoc/>
195
- public void Dispose ( ) => Shutdown ( ) ;
194
+ public void Dispose ( ) => Shutdown ( ) ;
196
195
}
197
196
198
197
/// <summary>
@@ -699,8 +698,7 @@ public StreamSubscriptionTimeoutSettings(StreamSubscriptionTimeoutTerminationMod
699
698
Mode = mode ;
700
699
Timeout = timeout ;
701
700
}
702
-
703
- /// <inheritdoc/>
701
+
704
702
public override bool Equals ( object obj )
705
703
{
706
704
if ( ReferenceEquals ( obj , null ) )
@@ -712,12 +710,11 @@ public override bool Equals(object obj)
712
710
713
711
return false ;
714
712
}
715
-
716
- /// <inheritdoc/>
713
+
717
714
public bool Equals ( StreamSubscriptionTimeoutSettings other )
718
715
=> Mode == other . Mode && Timeout . Equals ( other . Timeout ) ;
719
716
720
- /// <inheritdoc/>
717
+
721
718
public override int GetHashCode ( )
722
719
{
723
720
unchecked
@@ -726,7 +723,6 @@ public override int GetHashCode()
726
723
}
727
724
}
728
725
729
- /// <inheritdoc/>
730
726
public override string ToString ( ) => $ "StreamSubscriptionTimeoutSettings<{ Mode } , { Timeout } >";
731
727
}
732
728
You can’t perform that action at this time.
0 commit comments