Skip to content

Commit

Permalink
Remove Console.WriteLine
Browse files Browse the repository at this point in the history
  • Loading branch information
scott-xu committed Oct 22, 2017
1 parent 5a40fd0 commit a56a25c
Showing 1 changed file with 0 additions and 7 deletions.
7 changes: 0 additions & 7 deletions src/Ninject/Modules/ModuleLoader.cs
Original file line number Diff line number Diff line change
Expand Up @@ -67,15 +67,8 @@ public void LoadModules(IEnumerable<string> patterns)
var extension = fileGroup.Key;
var plugin = plugins.Where(p => p.SupportedExtensions.Contains(extension)).FirstOrDefault();

Console.WriteLine(fileGroup.Key);

if (plugin != null)
{
foreach (var f in fileGroup)
{
Console.WriteLine(f);
}

plugin.LoadModules(fileGroup);
}
}
Expand Down

0 comments on commit a56a25c

Please sign in to comment.