Skip to content

Commit f492948

Browse files
committed
[SchemaValidator] Fix ArrayTypingValidator
1 parent 703f950 commit f492948

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

SchemaValidator/Validation/Validators/ArrayTypingValidator.cs

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,12 +15,10 @@ public ArrayTypingValidator(IGameFileAccess gameData) : base(gameData) { }
1515

1616
public override ValidationResults Validate(ExcelHeaderFile exh, Sheet sheet)
1717
{
18-
if (sheet.Name == "SpecialShop")
19-
Debugger.Break();
2018
var results = new ValidationResults();
2119
var fields = SchemaUtil.Flatten(exh, sheet, true);
2220

23-
var grouped = fields.GroupBy(f => f.Field.Name);
21+
var grouped = fields.GroupBy(f => f.Field.Path);
2422
foreach (var group in grouped)
2523
{
2624
ExcelColumnDataType? baseType = null;

0 commit comments

Comments
 (0)