Refactor: Discard unused variable in VoskDictate.cs

Replaced the unused variable 'res' with a discard operator in the PartialResult call to enhance code clarity and maintainability by explicitly indicating the result is not used.

Signed-off-by: Ivandro Jao <Ivandrofly@gmail.com>
This commit is contained in:
Ivandro Jao 2024-10-11 08:42:25 +01:00
parent f133c82c85
commit 0b257818fa

View File

@ -88,7 +88,7 @@ namespace Nikse.SubtitleEdit.Forms.AudioToText
}
else
{
var res = rec.PartialResult();
_ = rec.PartialResult();
}
}
}