Skip to content

Commit

Permalink
Make lazy initialization methods static on windows
Browse files Browse the repository at this point in the history
  • Loading branch information
mdh1418 committed Jul 5, 2023
1 parent b43beab commit e933ea0
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -88,19 +88,19 @@ public AdjustmentRule[] GetAdjustmentRules()
return (AdjustmentRule[])_adjustmentRules.Clone();
}

private string? PopulateDisplayName()
private static string? PopulateDisplayName()
{
// Keep window's implementation to populate via constructor
return null;
}

private string? PopulateStandardDisplayName()
private static string? PopulateStandardDisplayName()
{
// Keep window's implementation to populate via constructor
return null;
}

private string? PopulateDaylightDisplayName()
private static string? PopulateDaylightDisplayName()
{
// Keep window's implementation to populate via constructor
return null;
Expand Down

0 comments on commit e933ea0

Please sign in to comment.