Skip to content

Commit

Permalink
Core: AddonDataProviders: IDisposable comes from IAddonDataProvider
Browse files Browse the repository at this point in the history
  • Loading branch information
Xian55 committed Sep 20, 2023
1 parent 45855c0 commit 538d781
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion Core/AddonDataProvider/AddonDataProviderBitBlt.cs
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@

namespace Core;

public sealed class AddonDataProviderBitBlt : IAddonDataProvider, IDisposable
public sealed class AddonDataProviderBitBlt : IAddonDataProvider
{
public int[] Data { get; private init; }
public StringBuilder TextBuilder { get; } = new(3);
Expand Down
2 changes: 1 addition & 1 deletion Core/AddonDataProvider/AddonDataProviderDXGI.cs
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@

namespace Core;

public sealed class AddonDataProviderDXGI : IAddonDataProvider, IDisposable
public sealed class AddonDataProviderDXGI : IAddonDataProvider
{
public int[] Data { get; private init; }
public StringBuilder TextBuilder { get; } = new(3);
Expand Down
2 changes: 1 addition & 1 deletion Core/AddonDataProvider/AddonDataProviderGDI.cs
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@

namespace Core;

public sealed class AddonDataProviderGDI : IAddonDataProvider, IDisposable
public sealed class AddonDataProviderGDI : IAddonDataProvider
{
public int[] Data { get; private init; }
public StringBuilder TextBuilder { get; } = new(3);
Expand Down
2 changes: 1 addition & 1 deletion Core/AddonDataProvider/AddonDataProviderGDIConfig.cs
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@

namespace Core;

public sealed class AddonDataProviderGDIConfig : IAddonDataProvider, IDisposable
public sealed class AddonDataProviderGDIConfig : IAddonDataProvider
{
public int[] Data { get; private set; } = Array.Empty<int>();
public StringBuilder TextBuilder { get; } = new(3);
Expand Down

0 comments on commit 538d781

Please sign in to comment.