Skip to content

Commit

Permalink
chore: whitespace/formatting in WarnOnce
Browse files Browse the repository at this point in the history
  • Loading branch information
daveleek committed Oct 17, 2023
1 parent d8cdbe2 commit 1457ff8
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/Unleash/Utilities/WarnOnce.cs
Original file line number Diff line number Diff line change
Expand Up @@ -4,13 +4,13 @@

namespace Unleash.Utilities
{
internal class WarnOnce
{
internal class WarnOnce
{
private readonly ILog logger;
private readonly HashSet<string> seen = new HashSet<string>();

public WarnOnce(ILog logger)
{
{
this.logger = logger;
}

Expand All @@ -24,6 +24,6 @@ public void Warn(string key, string message)
seen.Add(key);
logger.Warn(message);
}
}
}
}

0 comments on commit 1457ff8

Please sign in to comment.