Browse Source

remove unnecessary partial keyword

af/merge-core
Anton Firszov 8 years ago
parent
commit
b9034ba459
  1. 2
      src/ImageSharp.Drawing/Processing/DrawTextExtensions.cs
  2. 2
      src/ImageSharp.Drawing/Processing/RecolorBrush{TPixel}.cs

2
src/ImageSharp.Drawing/Processing/DrawTextExtensions.cs

@ -11,7 +11,7 @@ namespace SixLabors.ImageSharp.Processing
/// <summary>
/// Adds extensions that allow the drawing of text to the <see cref="Image{TPixel}"/> type.
/// </summary>
public static partial class DrawTextExtensions
public static class DrawTextExtensions
{
/// <summary>
/// Draws the text onto the the image filled via the brush.

2
src/ImageSharp.Drawing/Processing/RecolorBrush{TPixel}.cs

@ -15,7 +15,7 @@ namespace SixLabors.ImageSharp.Processing
/// </summary>
/// <typeparam name="TPixel">The pixel format.</typeparam>
public class RecolorBrush<TPixel> : IBrush<TPixel>
where TPixel : struct, IPixel<TPixel>
where TPixel : struct, IPixel<TPixel>
{
/// <summary>
/// Initializes a new instance of the <see cref="RecolorBrush{TPixel}" /> class.

Loading…
Cancel
Save