diff --git a/src/ImageSharp/ColorProfiles/IColorProfile.cs b/src/ImageSharp/ColorProfiles/IColorProfile.cs index e410f78729..f678fb2c96 100644 --- a/src/ImageSharp/ColorProfiles/IColorProfile.cs +++ b/src/ImageSharp/ColorProfiles/IColorProfile.cs @@ -32,6 +32,7 @@ public interface IColorProfile : IColorProfile, IEquatable /// The . Vector4 ToScaledVector4(); +#pragma warning disable CA1000 // Do not declare static members on generic types /// /// Initializes the color instance from a generic a generic ("scaled") representation /// with values scaled and clamped between 0 and 1. @@ -55,6 +56,7 @@ public interface IColorProfile : IColorProfile, IEquatable /// The vector span to convert from. /// The color span to write the results to. public static abstract void FromScaledVector4(ReadOnlySpan source, Span destination); +#pragma warning restore CA1000 // Do not declare static members on generic types } ///