Browse Source

Remove unused properties.

pull/1055/head
James Jackson-South 7 years ago
parent
commit
86a4cb272a
  1. 5
      src/ImageSharp.Drawing/Processing/TextGraphicsOptions.cs
  2. 5
      src/ImageSharp/GraphicsOptions.cs

5
src/ImageSharp.Drawing/Processing/TextGraphicsOptions.cs

@ -40,11 +40,6 @@ namespace SixLabors.ImageSharp.Processing
this.VerticalAlignment = source.VerticalAlignment;
}
/// <summary>
/// Gets the default <see cref="TextGraphicsOptions"/> instance.
/// </summary>
public static TextGraphicsOptions Default { get; } = new TextGraphicsOptions();
/// <summary>
/// Gets or sets a value indicating whether antialiasing should be applied.
/// Defaults to true.

5
src/ImageSharp/GraphicsOptions.cs

@ -29,11 +29,6 @@ namespace SixLabors.ImageSharp
this.ColorBlendingMode = source.ColorBlendingMode;
}
/// <summary>
/// Gets the default <see cref="GraphicsOptions"/> instance.
/// </summary>
public static GraphicsOptions Default { get; } = new GraphicsOptions();
/// <summary>
/// Gets or sets a value indicating whether antialiasing should be applied.
/// Defaults to true.

Loading…
Cancel
Save