fix(validation): MV-5 review nit — use IsNullOrWhiteSpace for List default-value guard (consistency)

This commit is contained in:
Joseph Doherty
2026-06-16 15:49:01 -04:00
parent 96e817a7e1
commit 6ef6bab26e
@@ -312,7 +312,7 @@ public class SemanticValidator
}
// ── Rule 2: default-value parseability ───────────────────────────
if (!string.IsNullOrEmpty(attr.Value))
if (!string.IsNullOrWhiteSpace(attr.Value))
{
try
{