Removed useless Async methods

This commit is contained in:
2023-05-23 17:29:06 +02:00
parent 462d07093a
commit 6b94935259
12 changed files with 62 additions and 92 deletions
+2 -2
View File
@@ -23,9 +23,9 @@ namespace Test_Merge
/// Decodes the position number using Tesseract OCR
/// </summary>
/// <returns>The position of the pilot in int</returns>
public override async Task<object> DecodePng()
public override object DecodePng()
{
string ocrResult = await GetStringFromPng(WindowImage, Engine, "0123456789");
string ocrResult = GetStringFromPng(WindowImage, Engine, "0123456789");
int position;
try