From 6dd2a6efb97a2e01b4f8f1c2856571c093edc0d9 Mon Sep 17 00:00:00 2001 From: Johnny Viel Date: Fri, 10 Mar 2023 11:32:25 -0500 Subject: [PATCH] Undoes IDE auto-format of imports. --- ts/builder.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ts/builder.ts b/ts/builder.ts index 15394cfe4..8f98c3def 100644 --- a/ts/builder.ts +++ b/ts/builder.ts @@ -1,6 +1,6 @@ import { ByteBuffer } from "./byte-buffer.js" -import { FILE_IDENTIFIER_LENGTH, SIZEOF_INT, SIZEOF_SHORT, SIZE_PREFIX_LENGTH } from "./constants.js" -import { IGeneratedObject, Offset } from "./types.js" +import { SIZEOF_SHORT, SIZE_PREFIX_LENGTH, SIZEOF_INT, FILE_IDENTIFIER_LENGTH } from "./constants.js" +import { Offset, IGeneratedObject } from "./types.js" export class Builder { private bb: ByteBuffer