Remove unused/duplicated method

This commit is contained in:
ivandroflygit config --global user.email ivandrofly@gmail.comgit config --global user.name ivandrofly 2015-12-18 17:42:17 +00:00
parent 139c2f6aba
commit 16e78d063c

View File

@ -569,18 +569,6 @@ namespace Nikse.SubtitleEdit.Logic.Ocr
return sb.ToString();
}
public static string FixLowerCaseLInsideUpperCaseWord(string word)
{
if (word.Length > 3 && word.Replace("l", string.Empty).ToUpper() == word.Replace("l", string.Empty))
{
if (!word.Contains(new[] { '<', '>', '\'' }))
{
word = word.Replace('l', 'I');
}
}
return word;
}
private string FixCommonOcrLineErrors(string input, string lastLine)
{
input = FixOcrErrorViaLineReplaceList(input);