Browse Source

Remove unused Write(decimal) method on EndianBinaryWriter

af/merge-core
Jason Nelson 8 years ago
parent
commit
8fe9620a68
  1. 11
      src/ImageSharp/IO/EndianBinaryWriter.cs

11
src/ImageSharp/IO/EndianBinaryWriter.cs

@ -200,17 +200,6 @@ namespace SixLabors.ImageSharp.IO
this.WriteInternal(this.buffer, 8);
}
/// <summary>
/// Writes a decimal value to the stream, using the bit converter for this writer.
/// 16 bytes are written.
/// </summary>
/// <param name="value">The value to write</param>
public void Write(decimal value)
{
this.BitConverter.CopyBytes(value, this.buffer, 0);
this.WriteInternal(this.buffer, 16);
}
/// <summary>
/// Writes a signed byte to the stream.
/// </summary>

Loading…
Cancel
Save