clear off even more codefactor issues

This commit is contained in:
Holly Stubbs 2023-06-26 10:00:06 +01:00
parent 59e12c0655
commit 3ca20743a3
2 changed files with 1 additions and 2 deletions

View File

@ -1,4 +1,3 @@
import { Console } from "../console";
import { FunkyArray } from "../funkyArray";
import { NibbleArray } from "../nibbleArray";
import { Block } from "./blocks/Block";

View File

@ -44,7 +44,7 @@ export class MetadataWriter {
public writeBuffer() {
const writer = createWriter(Endian.BE, this.calculateBufferSize());
for (let key of this.entries.keys) {
for (const key of this.entries.keys) {
const entry = this.entries.get(key);
if (entry instanceof MetadataEntry) {
writer.writeByte((entry.type << 5 | key & 0x1f) & 0xff);