mirror of
https://github.com/SubtitleEdit/subtitleedit.git
synced 2024-11-22 11:12:36 +01:00
Remove redundant 'base' keyword from previous patch
This commit is contained in:
parent
384e90fe57
commit
2c62151da5
@ -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, " ");
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user