Revert "temp send emails for long rules"

This reverts commit 4607ae6e91.
This commit is contained in:
Collin Barrett 2018-08-22 18:12:38 -05:00
parent 4607ae6e91
commit aa9b79a2e7

View file

@ -114,11 +114,7 @@ private async Task<IEnumerable<string>> GetLines()
{
string line;
while ((line = await streamReader.ReadLineAsync()) != null)
{
lines.AddIfNotNullOrEmpty(line.LintLine());
if (line.Length >= 191)
await emailService.SendEmailAsync("Long Line Possibly Truncated", line);
}
}
}