Skip to content

Commit

Permalink
Revert to C#11
Browse files Browse the repository at this point in the history
  • Loading branch information
Kurochi51 committed Feb 20, 2024
1 parent b0ddb23 commit 729055b
Showing 1 changed file with 9 additions and 3 deletions.
12 changes: 9 additions & 3 deletions PetScale/Helpers/Utilities.cs
Original file line number Diff line number Diff line change
Expand Up @@ -12,10 +12,16 @@

namespace PetScale.Helpers;

public class Utilities(IDataManager _dataManager, IPluginLog _pluginLog)
public class Utilities
{
private readonly IDataManager dataManager = _dataManager;
private readonly IPluginLog log = _pluginLog;
private readonly IDataManager dataManager;
private readonly IPluginLog log;

public Utilities(IDataManager _dataManager, IPluginLog _pluginLog)
{
dataManager = _dataManager;
log = _pluginLog;
}

/// <summary>
/// Attempt to retrieve an <see cref="ExcelSheet{T}"/>, optionally in a specific <paramref name="language"/>.
Expand Down

0 comments on commit 729055b

Please sign in to comment.