Skip to content

Commit

Permalink
Remove more accessibility modifiers
Browse files Browse the repository at this point in the history
  • Loading branch information
MH321Productions committed Feb 12, 2025
1 parent e8ed35b commit 830f771
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -196,7 +196,7 @@ public void PrintStringToFile(string value, string filename)

public interface IPrinter
{
public void OutputAll(IList<PoolEntry> pools, PrintTarget target = PrintTarget.All);
void OutputAll(IList<PoolEntry> pools, PrintTarget target = PrintTarget.All);
protected internal void PrintRelationships(IList<PoolEntry> pools, bool summaryOnly = false);
protected internal void PrintMessages(IList<PoolEntry> pools, bool summaryOnly = false);
void PrintStringToFile(string value, string filename);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,5 +4,5 @@ namespace Backbone.ConsumerApi.Tests.Performance.SnapshotCreator.Application.Rel

public interface IRelationshipDistributor
{
public void Distribute(IList<PoolEntry> pools);
void Distribute(IList<PoolEntry> pools);
}
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,6 @@ namespace Backbone.Modules.Tags.Application.Infrastructure.Persistence.Repositor

public interface ITagsRepository
{
public IEnumerable<string> GetSupportedLanguages();
public Dictionary<string, Dictionary<string, TagInfo>> GetAttributes();
IEnumerable<string> GetSupportedLanguages();
Dictionary<string, Dictionary<string, TagInfo>> GetAttributes();
}

0 comments on commit 830f771

Please sign in to comment.