using System;
namespace AMWD.Common.Logging
{
///
/// An empty scope without any logic.
///
[System.Diagnostics.CodeAnalysis.ExcludeFromCodeCoverage]
internal class NullScope : IDisposable
{
///
/// The instance to use.
///
public static NullScope Instance { get; } = new NullScope();
private NullScope()
{
}
///
public void Dispose()
{
}
}
}