mirror of
https://github.com/PepperDash/Essentials.git
synced 2026-04-12 12:06:58 +00:00
fix: added continue to resolve warning of possible empty statement when compiled locally
This commit is contained in:
parent
03d5c24dc4
commit
555944011d
1 changed files with 1 additions and 1 deletions
|
|
@ -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;
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue