Remove redundant 'base' keyword from previous patch

This commit is contained in:
Ivandro Ismael 2015-08-07 03:55:09 +01:00
parent 384e90fe57
commit 2c62151da5

View File

@ -194,7 +194,7 @@ namespace Nikse.SubtitleEdit.Controls
// fix end spaces
if (endIndex < Text.Length && !newText.EndsWith(' ') && Text[endIndex] != ' ')
{
bool lastWord = expectedChars.Contains(base.Text[endIndex]);
bool lastWord = expectedChars.Contains(Text[endIndex]);
if (!lastWord)
Text = Text.Insert(endIndex, " ");
}