diff options
author | Serghei Cebotari <serghei@cebotari.ru> | 2024-11-13 23:43:27 +0300 |
---|---|---|
committer | Serghei Cebotari <serghei@cebotari.ru> | 2024-11-13 23:43:27 +0300 |
commit | 843f73fec8269a3c67e494f2abd8e0cd5f7b3d31 (patch) | |
tree | 1a29ccb665be484876a7d6c8fc97bdbec76df53e | |
parent | f8c62c6defa5c8c5ac06450bbcf1dc558b6e1a32 (diff) |
Fix null return
-rw-r--r-- | OcrClient/Services/YandexOcrClient.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/OcrClient/Services/YandexOcrClient.cs b/OcrClient/Services/YandexOcrClient.cs index 8568e38..3146e84 100644 --- a/OcrClient/Services/YandexOcrClient.cs +++ b/OcrClient/Services/YandexOcrClient.cs @@ -65,6 +65,6 @@ public class YandexOcrClient : IOcrClient return result; } } - return null; + return Enumerable.Empty<object[,]>(); } }
\ No newline at end of file |