diff --git a/src/ImageSharp/Common/Extensions/ByteExtensions.cs b/src/ImageSharp/Common/Extensions/ByteExtensions.cs
deleted file mode 100644
index ee41096cf..000000000
--- a/src/ImageSharp/Common/Extensions/ByteExtensions.cs
+++ /dev/null
@@ -1,26 +0,0 @@
-// Copyright (c) Six Labors and contributors.
-// Licensed under the Apache License, Version 2.0.
-
-using System;
-using System.Runtime.CompilerServices;
-using SixLabors.ImageSharp.PixelFormats;
-
-namespace SixLabors.ImageSharp
-{
- ///
- /// Extension methods for the struct buffers.
- ///
- internal static class ByteExtensions
- {
- ///
- /// Returns a reference to the given position of the span unsafe casted to .
- ///
- /// The byte span.
- /// The reference at the given offset.
- [MethodImpl(MethodImplOptions.AggressiveInlining)]
- public static ref Rgb24 AsRgb24(this Span bytes)
- {
- return ref Unsafe.As(ref bytes[0]);
- }
- }
-}
\ No newline at end of file