mirror of
https://github.com/PepperDash/Essentials.git
synced 2026-02-16 13:15:03 +00:00
fix: added continue to resolve warning of possible empty statement when compiled locally
This commit is contained in:
@@ -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;
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user