aboutsummaryrefslogtreecommitdiff
path: root/Emby.Drawing/PercentPlayedDrawer.cs
diff options
context:
space:
mode:
authorBond_009 <bond.009@outlook.com>2019-01-20 14:25:13 +0100
committerBond_009 <bond.009@outlook.com>2019-01-20 14:25:13 +0100
commitca910325f3a0d8ce0cf71f2553d395e797b8c57d (patch)
tree7644243d95bf5c2da0db7e312f420655040957a7 /Emby.Drawing/PercentPlayedDrawer.cs
parent8fc8fc06223c567141289cde9ab00c66acfaa6e2 (diff)
Remove unneeded fields
Diffstat (limited to 'Emby.Drawing/PercentPlayedDrawer.cs')
-rw-r--r--Emby.Drawing/PercentPlayedDrawer.cs4
1 files changed, 2 insertions, 2 deletions
diff --git a/Emby.Drawing/PercentPlayedDrawer.cs b/Emby.Drawing/PercentPlayedDrawer.cs
index 3ab5f34bc3..52b4329e1e 100644
--- a/Emby.Drawing/PercentPlayedDrawer.cs
+++ b/Emby.Drawing/PercentPlayedDrawer.cs
@@ -4,11 +4,11 @@ using SkiaSharp;
namespace Emby.Drawing
{
- public class PercentPlayedDrawer
+ public static class PercentPlayedDrawer
{
private const int IndicatorHeight = 8;
- public void Process(SKCanvas canvas, ImageSize imageSize, double percent)
+ public static void Process(SKCanvas canvas, ImageSize imageSize, double percent)
{
using (var paint = new SKPaint())
{