Fixed a few code hints
This commit is contained in:
parent
e83645cdc4
commit
66a0ec116b
@ -144,7 +144,7 @@ namespace Tapeti.Cmd.ConsoleHelper
|
|||||||
public void Confirm(string message)
|
public void Confirm(string message)
|
||||||
{
|
{
|
||||||
WriteLine(message);
|
WriteLine(message);
|
||||||
TryReadKey(false, out var _);
|
TryReadKey(false, out _);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
@ -1,5 +1,4 @@
|
|||||||
using System;
|
using CommandLine;
|
||||||
using CommandLine;
|
|
||||||
using RabbitMQ.Client;
|
using RabbitMQ.Client;
|
||||||
using Tapeti.Cmd.ConsoleHelper;
|
using Tapeti.Cmd.ConsoleHelper;
|
||||||
|
|
||||||
|
@ -1,5 +1,4 @@
|
|||||||
using System;
|
using CommandLine;
|
||||||
using CommandLine;
|
|
||||||
using RabbitMQ.Client;
|
using RabbitMQ.Client;
|
||||||
using RabbitMQ.Client.Exceptions;
|
using RabbitMQ.Client.Exceptions;
|
||||||
using Tapeti.Cmd.ConsoleHelper;
|
using Tapeti.Cmd.ConsoleHelper;
|
||||||
|
@ -30,7 +30,7 @@ namespace Tapeti.Flow.Default
|
|||||||
private readonly ConcurrentDictionary<Guid, CachedFlowState> flowStates = new ConcurrentDictionary<Guid, CachedFlowState>();
|
private readonly ConcurrentDictionary<Guid, CachedFlowState> flowStates = new ConcurrentDictionary<Guid, CachedFlowState>();
|
||||||
private readonly ConcurrentDictionary<Guid, Guid> continuationLookup = new ConcurrentDictionary<Guid, Guid>();
|
private readonly ConcurrentDictionary<Guid, Guid> continuationLookup = new ConcurrentDictionary<Guid, Guid>();
|
||||||
private readonly LockCollection<Guid> locks = new LockCollection<Guid>(EqualityComparer<Guid>.Default);
|
private readonly LockCollection<Guid> locks = new LockCollection<Guid>(EqualityComparer<Guid>.Default);
|
||||||
private HashSet<string> validatedMethods = null;
|
private HashSet<string> validatedMethods;
|
||||||
|
|
||||||
private readonly IFlowRepository repository;
|
private readonly IFlowRepository repository;
|
||||||
private readonly ITapetiConfig config;
|
private readonly ITapetiConfig config;
|
||||||
|
@ -1,5 +1,4 @@
|
|||||||
using System;
|
using System.Reflection;
|
||||||
using System.Reflection;
|
|
||||||
using System.Text.RegularExpressions;
|
using System.Text.RegularExpressions;
|
||||||
|
|
||||||
namespace Tapeti.Flow.FlowHelpers
|
namespace Tapeti.Flow.FlowHelpers
|
||||||
|
@ -1,6 +1,7 @@
|
|||||||
using System;
|
using System;
|
||||||
|
|
||||||
// ReSharper disable UnusedMemberInSuper.Global - public API
|
// ReSharper disable UnusedMemberInSuper.Global - public API
|
||||||
|
// ReSharper disable UnusedMember.Global
|
||||||
|
|
||||||
namespace Tapeti.Config
|
namespace Tapeti.Config
|
||||||
{
|
{
|
||||||
|
@ -3,6 +3,8 @@ using System.Collections.Generic;
|
|||||||
using System.Text;
|
using System.Text;
|
||||||
using Tapeti.Config;
|
using Tapeti.Config;
|
||||||
|
|
||||||
|
// ReSharper disable UnusedMember.Global - public API
|
||||||
|
|
||||||
namespace Tapeti.Default
|
namespace Tapeti.Default
|
||||||
{
|
{
|
||||||
/// <inheritdoc />
|
/// <inheritdoc />
|
||||||
@ -17,9 +19,6 @@ namespace Tapeti.Default
|
|||||||
/// </summary>
|
/// </summary>
|
||||||
public class WithMessageLogging : ConsoleLogger
|
public class WithMessageLogging : ConsoleLogger
|
||||||
{
|
{
|
||||||
/// <inheritdoc />
|
|
||||||
public WithMessageLogging() : base() { }
|
|
||||||
|
|
||||||
internal override bool IncludeMessageBody() => true;
|
internal override bool IncludeMessageBody() => true;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user