mirror of
https://github.com/jellyfin/jellyfin.git
synced 2026-01-15 23:58:57 +00:00
Remove unnecessary base constructor calls.
This commit is contained in:
@@ -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;
|
||||
}
|
||||
|
||||
@@ -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()
|
||||
{
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user