diff --git a/src/ImageSharp/Formats/Jpeg/Components/Block8x8F.cs b/src/ImageSharp/Formats/Jpeg/Components/Block8x8F.cs
index ee2c5b967..56466d7a0 100644
--- a/src/ImageSharp/Formats/Jpeg/Components/Block8x8F.cs
+++ b/src/ImageSharp/Formats/Jpeg/Components/Block8x8F.cs
@@ -230,31 +230,6 @@ namespace ImageSharp.Formats.Jpg
}
}
- ///
- /// Multiply all elements of the block.
- ///
- /// Vector to multiply by
- [MethodImpl(MethodImplOptions.AggressiveInlining)]
- public void MultiplyAllInplace(Vector4 scaleVec)
- {
- this.V0L *= scaleVec;
- this.V0R *= scaleVec;
- this.V1L *= scaleVec;
- this.V1R *= scaleVec;
- this.V2L *= scaleVec;
- this.V2R *= scaleVec;
- this.V3L *= scaleVec;
- this.V3R *= scaleVec;
- this.V4L *= scaleVec;
- this.V4R *= scaleVec;
- this.V5L *= scaleVec;
- this.V5R *= scaleVec;
- this.V6L *= scaleVec;
- this.V6R *= scaleVec;
- this.V7L *= scaleVec;
- this.V7R *= scaleVec;
- }
-
///
/// Multiply all elements of the block.
///
diff --git a/tests/ImageSharp.Tests/Formats/Jpg/Block8x8FTests.cs b/tests/ImageSharp.Tests/Formats/Jpg/Block8x8FTests.cs
index 63ddbc884..01501a33d 100644
--- a/tests/ImageSharp.Tests/Formats/Jpg/Block8x8FTests.cs
+++ b/tests/ImageSharp.Tests/Formats/Jpg/Block8x8FTests.cs
@@ -309,7 +309,7 @@ namespace ImageSharp.Tests
float[] data = Create8x8FloatData();
Block8x8F block = new Block8x8F();
block.LoadFrom(data);
- block.MultiplyAllInplace(new Vector4(5, 5, 5, 5));
+ block.MultiplyAllInplace(5);
int stride = 256;
int height = 42;