소스 검색

Add using keywords to non-disposed objects in BuildThumbCollageBitmap

MrTimscampi 4 년 전
부모
커밋
3b8947aba6
1개의 변경된 파일2개의 추가작업 그리고 5개의 파일을 삭제
  1. 2 5
      Jellyfin.Drawing.Skia/StripCollageBuilder.cs

+ 2 - 5
Jellyfin.Drawing.Skia/StripCollageBuilder.cs

@@ -112,7 +112,7 @@ namespace Jellyfin.Drawing.Skia
             canvas.DrawImage(residedBackdrop, 0, 0);
 
             // draw shadow rectangle
-            var paintColor = new SKPaint
+            using var paintColor = new SKPaint
             {
                 Color = SKColors.Black.WithAlpha(0x78),
                 Style = SKPaintStyle.Fill
@@ -130,7 +130,7 @@ namespace Jellyfin.Drawing.Skia
             }
 
             // draw library name
-            var textPaint = new SKPaint
+            using var textPaint = new SKPaint
             {
                 Color = SKColors.White,
                 Style = SKPaintStyle.Fill,
@@ -149,9 +149,6 @@ namespace Jellyfin.Drawing.Skia
 
             canvas.DrawText(libraryName, width / 2f, (height / 2f) + (textPaint.FontMetrics.XHeight / 2), textPaint);
 
-            paintColor.Dispose();
-            textPaint.Dispose();
-
             return bitmap;
         }