fix: added continue to resolve warning of possible empty statement when compiled locally

This commit is contained in:
jdevito
2023-01-19 12:19:27 -06:00
parent 03d5c24dc4
commit 555944011d

View File

@@ -579,7 +579,7 @@ namespace PepperDash.Essentials.Core
var errorKey = string.Empty; var errorKey = string.Empty;
foreach (var item in dataArray) foreach (var item in dataArray)
{ {
if (item.Value.TrimEnd() == placeholder) ; if (item.Value.TrimEnd() == placeholder) continue;
errorKey = item.Key; errorKey = item.Key;
break; break;
} }