mirror of
https://github.com/jellyfin/jellyfin.git
synced 2025-04-23 21:47:14 -04:00
Remove unnecessary base constructor calls.
This commit is contained in:
parent
87b8a8d7c7
commit
1be3e1e037
2 changed files with 2 additions and 2 deletions
|
@ -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()
|
||||
{
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue