Slight formatting cleanup

This commit is contained in:
Matt Nadareski
2025-08-28 12:14:48 -04:00
parent 3400238fc5
commit 7917601f7a

View File

@@ -38,13 +38,10 @@ namespace SabreTools.Serialization.Printers
var entry = entries[i];
builder.AppendLine($" Entry {i}:");
builder.AppendLine();
Print(builder, entry.Header);
Print(builder, entry.Blocks);
}
builder.AppendLine();
}
private static void Print(StringBuilder builder, Header? header)
@@ -99,6 +96,8 @@ namespace SabreTools.Serialization.Printers
else
builder.AppendLine(block.Data.Length, $" Block {i} Length");
}
builder.AppendLine();
}
}
}