Summary
Removes duplicate validation logic for leading whitespace in field values in scripts/buildtable.pl.
Changes
- Removed redundant
$val =~ /^\s/check inside the field parsing branch - Kept the unified validation after branching logic
- Maintains identical error detection behavior
Rationale
The same whitespace validation was performed twice:
- Inside the first parsing branch
- After the branching logic