Remove unnecessary base constructor calls.

This commit is contained in:
Patrick Barron 2020-07-19 14:14:44 -04:00
parent 87b8a8d7c7
commit 1be3e1e037
2 changed files with 2 additions and 2 deletions

View file

@ -12,7 +12,7 @@ namespace Jellyfin.Drawing.Skia
/// Initializes a new instance of the <see cref="SkiaCodecException" /> class.
/// </summary>
/// <param name="result">The non-successful codec result returned by Skia.</param>
public SkiaCodecException(SKCodecResult result) : base()
public SkiaCodecException(SKCodecResult result)
{
CodecResult = result;
}

View file

@ -10,7 +10,7 @@ namespace Jellyfin.Drawing.Skia
/// <summary>
/// Initializes a new instance of the <see cref="SkiaException"/> class.
/// </summary>
public SkiaException() : base()
public SkiaException()
{
}