ImgMetadataRemover/ImageCore/Core/NullCompressor.cs

17 lines
No EOL
413 B
C#

namespace Image.Core
{
/// <summary>
/// Does nothing. Using this Compressor will have no effect.
/// </summary>
public class NullCompressor : ICompressor
{
public static readonly NullCompressor Instance = new NullCompressor();
/// <summary>
/// <inheritdoc />
/// </summary>
public void Compress(string fileName)
{
}
}
}