mirror of
https://github.com/SubtitleEdit/subtitleedit.git
synced 2024-11-22 03:02:35 +01:00
Refactor variable naming in MatroskaFile
Updated the variable 'ChapterDisplay' to 'chapterDisplay' in the 'GetChapterName' method of the 'MatroskaFile.cs' file. This change adheres to the standard naming convention increasing code readability and maintainability. Signed-off-by: Ivandro Jao <ivandrofly@gmail.com>
This commit is contained in:
parent
2d946020ff
commit
aa7b5b8b51
@ -520,10 +520,10 @@ namespace Nikse.SubtitleEdit.Core.ContainerFormats.Matroska
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
private string GetChapterName(Element ChapterDisplay)
|
private string GetChapterName(Element chapterDisplay)
|
||||||
{
|
{
|
||||||
Element element;
|
Element element;
|
||||||
while (_stream.Position < ChapterDisplay.EndPosition && (element = ReadElement()) != null)
|
while (_stream.Position < chapterDisplay.EndPosition && (element = ReadElement()) != null)
|
||||||
{
|
{
|
||||||
if (element.Id == ElementId.ChapString)
|
if (element.Id == ElementId.ChapString)
|
||||||
{
|
{
|
||||||
|
Loading…
Reference in New Issue
Block a user