Browse Source

Исправление ошибки из предыдущего коммита

release
Никита 6 years ago
parent
commit
0cdc68d7f0
  1. 8
      fileFinder/MainForm.cs

8
fileFinder/MainForm.cs

@ -123,13 +123,9 @@ namespace fileFinder
private bool isFileContainQuery (string[] fileLines, string query)
{
int count = 0;
while (fileLines.Length > count)
if (fileLines[count].IndexOf(query) != -1)
{
foreach (string item in fileLines)
if (item.IndexOf(query) != -1)
return true;
}
count++;
return false;
}

Loading…
Cancel
Save