From 0475a072d5bfeaaf27edab490d996fa979ad6a7b Mon Sep 17 00:00:00 2001 From: Anton Firszov Date: Wed, 4 Jul 2018 00:39:29 +0200 Subject: [PATCH] remove unnecessary partial keyword --- src/ImageSharp.Drawing/Processing/DrawTextExtensions.cs | 2 +- src/ImageSharp.Drawing/Processing/RecolorBrush{TPixel}.cs | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/ImageSharp.Drawing/Processing/DrawTextExtensions.cs b/src/ImageSharp.Drawing/Processing/DrawTextExtensions.cs index 114de76105..46061ce9bc 100644 --- a/src/ImageSharp.Drawing/Processing/DrawTextExtensions.cs +++ b/src/ImageSharp.Drawing/Processing/DrawTextExtensions.cs @@ -11,7 +11,7 @@ namespace SixLabors.ImageSharp.Processing /// /// Adds extensions that allow the drawing of text to the type. /// - public static partial class DrawTextExtensions + public static class DrawTextExtensions { /// /// Draws the text onto the the image filled via the brush. diff --git a/src/ImageSharp.Drawing/Processing/RecolorBrush{TPixel}.cs b/src/ImageSharp.Drawing/Processing/RecolorBrush{TPixel}.cs index 480c42ee03..058b03d621 100644 --- a/src/ImageSharp.Drawing/Processing/RecolorBrush{TPixel}.cs +++ b/src/ImageSharp.Drawing/Processing/RecolorBrush{TPixel}.cs @@ -15,7 +15,7 @@ namespace SixLabors.ImageSharp.Processing /// /// The pixel format. public class RecolorBrush : IBrush - where TPixel : struct, IPixel + where TPixel : struct, IPixel { /// /// Initializes a new instance of the class.