mirror of
https://github.com/PepperDash/Essentials.git
synced 2026-02-06 16:25:01 +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;
|
||||
foreach (var item in dataArray)
|
||||
{
|
||||
if (item.Value.TrimEnd() == placeholder) ;
|
||||
if (item.Value.TrimEnd() == placeholder) continue;
|
||||
errorKey = item.Key;
|
||||
break;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user