diff --git a/src/ImageSharp/Formats/Jpeg/Components/Block8x8.cs b/src/ImageSharp/Formats/Jpeg/Components/Block8x8.cs
index 27bb2fc3cd..5d669ff8ad 100644
--- a/src/ImageSharp/Formats/Jpeg/Components/Block8x8.cs
+++ b/src/ImageSharp/Formats/Jpeg/Components/Block8x8.cs
@@ -102,74 +102,6 @@ namespace SixLabors.ImageSharp.Formats.Jpeg.Components
set => this[(y * 8) + x] = value;
}
- public static bool operator ==(Block8x8 left, Block8x8 right) => left.Equals(right);
-
- public static bool operator !=(Block8x8 left, Block8x8 right) => !left.Equals(right);
-
- ///
- /// Multiply all elements by a given
- ///
- public static Block8x8 operator *(Block8x8 block, int value)
- {
- Block8x8 result = block;
- for (int i = 0; i < Size; i++)
- {
- int val = result[i];
- val *= value;
- result[i] = (short)val;
- }
-
- return result;
- }
-
- ///
- /// Divide all elements by a given
- ///
- public static Block8x8 operator /(Block8x8 block, int value)
- {
- Block8x8 result = block;
- for (int i = 0; i < Size; i++)
- {
- int val = result[i];
- val /= value;
- result[i] = (short)val;
- }
-
- return result;
- }
-
- ///
- /// Add an to all elements
- ///
- public static Block8x8 operator +(Block8x8 block, int value)
- {
- Block8x8 result = block;
- for (int i = 0; i < Size; i++)
- {
- int val = result[i];
- val += value;
- result[i] = (short)val;
- }
-
- return result;
- }
-
- ///
- /// Subtract an from all elements
- ///
- public static Block8x8 operator -(Block8x8 block, int value)
- {
- Block8x8 result = block;
- for (int i = 0; i < Size; i++)
- {
- int val = result[i];
- val -= value;
- result[i] = (short)val;
- }
-
- return result;
- }
-
public static Block8x8 Load(Span data)
{
Unsafe.SkipInit(out Block8x8 result);