Skip to content

Commit 594f742

Browse files
rustyconoverclaude
andcommitted
wire/response: apply Biome formatting
Auto-format the buildEmptyBatch makeData() call sites that the formatter flagged in CI; no behavior change. Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
1 parent 6618860 commit 594f742

1 file changed

Lines changed: 11 additions & 3 deletions

File tree

src/wire/response.ts

Lines changed: 11 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -171,12 +171,20 @@ function makeEmptyData(type: DataType): Data {
171171
const children = type.children.map((f: Field) => makeEmptyData(f.type));
172172
if (DataType.isDenseUnion(type)) {
173173
return makeData({
174-
type, length: 0, typeIds: new Int8Array(0),
175-
valueOffsets: new Int32Array(0), children, nullCount: 0,
174+
type,
175+
length: 0,
176+
typeIds: new Int8Array(0),
177+
valueOffsets: new Int32Array(0),
178+
children,
179+
nullCount: 0,
176180
} as any);
177181
}
178182
return makeData({
179-
type, length: 0, typeIds: new Int8Array(0), children, nullCount: 0,
183+
type,
184+
length: 0,
185+
typeIds: new Int8Array(0),
186+
children,
187+
nullCount: 0,
180188
} as any);
181189
}
182190
return makeData({ type, length: 0, nullCount: 0 });

0 commit comments

Comments
 (0)