SonicScenaristBitmap] - Remove unused loop/variable.

This commit is contained in:
Ivandro Ismael 2016-09-02 13:53:30 +01:00
parent 0947504697
commit 34dcde6276
No known key found for this signature in database
GPG Key ID: A8832757DEFB7EDC

View File

@ -31,9 +31,6 @@ namespace Nikse.SubtitleEdit.Core.SubtitleFormats
return false;
var subtitle = new Subtitle();
var sb = new StringBuilder();
foreach (string line in lines)
sb.AppendLine(line);
LoadSubtitle(subtitle, lines, fileName);
return subtitle.Paragraphs.Count > _errorCount;
}