浏览代码

Remove unnecessary base constructor calls.

Patrick Barron 4 年之前
父节点
当前提交
1be3e1e037
共有 2 个文件被更改,包括 2 次插入2 次删除
  1. 1 1
      Jellyfin.Drawing.Skia/SkiaCodecException.cs
  2. 1 1
      Jellyfin.Drawing.Skia/SkiaException.cs

+ 1 - 1
Jellyfin.Drawing.Skia/SkiaCodecException.cs

@@ -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;
         }

+ 1 - 1
Jellyfin.Drawing.Skia/SkiaException.cs

@@ -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()
         {
         }