From 8fe9620a68a9c993c1c3a33700b637d6d027eeaf Mon Sep 17 00:00:00 2001 From: Jason Nelson Date: Thu, 22 Mar 2018 07:58:39 -0700 Subject: [PATCH] Remove unused Write(decimal) method on EndianBinaryWriter --- src/ImageSharp/IO/EndianBinaryWriter.cs | 11 ----------- 1 file changed, 11 deletions(-) diff --git a/src/ImageSharp/IO/EndianBinaryWriter.cs b/src/ImageSharp/IO/EndianBinaryWriter.cs index dd87faf455..fc64340203 100644 --- a/src/ImageSharp/IO/EndianBinaryWriter.cs +++ b/src/ImageSharp/IO/EndianBinaryWriter.cs @@ -200,17 +200,6 @@ namespace SixLabors.ImageSharp.IO this.WriteInternal(this.buffer, 8); } - /// - /// Writes a decimal value to the stream, using the bit converter for this writer. - /// 16 bytes are written. - /// - /// The value to write - public void Write(decimal value) - { - this.BitConverter.CopyBytes(value, this.buffer, 0); - this.WriteInternal(this.buffer, 16); - } - /// /// Writes a signed byte to the stream. ///