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.
///