Skip to content

Commit 15e5d8b

Browse files
fixed TestKit build warnings (#7572)
1 parent 4471d6a commit 15e5d8b

File tree

2 files changed

+7
-19
lines changed

2 files changed

+7
-19
lines changed

src/core/Akka.Streams/ActorMaterializer.cs

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -258,13 +258,12 @@ private static ActorSystem ActorSystemOf(IActorRefFactory context)
258258
internal static class ActorMaterializerHelper
259259
{
260260
/// <summary>
261-
/// TBD
261+
/// Converts an <see cref="IMaterializer"/> to an <see cref="ActorMaterializer"/>.
262262
/// </summary>
263-
/// <param name="materializer">TBD</param>
263+
/// <param name="materializer">The original materializer.</param>
264264
/// <exception cref="ArgumentException">
265265
/// This exception is thrown when the specified <paramref name="materializer"/> is not of type <see cref="ActorMaterializer"/>.
266266
/// </exception>
267-
/// <returns>TBD</returns>
268267
internal static ActorMaterializer Downcast(IMaterializer materializer)
269268
{
270269
//FIXME this method is going to cause trouble for other Materializer implementations

src/core/Akka.TestKit/CallingThreadDispatcher.cs

Lines changed: 5 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -43,30 +43,19 @@ public override MessageDispatcher Dispatcher()
4343
public class CallingThreadDispatcher : MessageDispatcher
4444
{
4545
/// <summary>
46-
/// TBD
46+
/// HOCON id of the CallingThreadDispatcher
4747
/// </summary>
48-
public static string Id = "akka.test.calling-thread-dispatcher";
49-
50-
/// <summary>
51-
/// TBD
52-
/// </summary>
53-
/// <param name="configurator">TBD</param>
48+
public new static string Id = "akka.test.calling-thread-dispatcher";
49+
5450
public CallingThreadDispatcher(MessageDispatcherConfigurator configurator) : base(configurator)
5551
{
5652
}
57-
58-
/// <summary>
59-
/// TBD
60-
/// </summary>
61-
/// <param name="run">TBD</param>
53+
6254
protected override void ExecuteTask(IRunnable run)
6355
{
6456
run.Run();
6557
}
66-
67-
/// <summary>
68-
/// TBD
69-
/// </summary>
58+
7059
protected override void Shutdown()
7160
{
7261
// do nothing

0 commit comments

Comments
 (0)