From 70cdeafaf1a25729b49c167d5455687b4e8f19be Mon Sep 17 00:00:00 2001 From: dk1a Date: Tue, 25 Jul 2023 16:13:48 +0300 Subject: [PATCH] cleanup --- packages/store/src/tightcoder/TightCoder.sol | 3 +-- packages/store/test/tightcoder/TightCoder.t.sol | 1 - 2 files changed, 1 insertion(+), 3 deletions(-) diff --git a/packages/store/src/tightcoder/TightCoder.sol b/packages/store/src/tightcoder/TightCoder.sol index 048d6eab0b..558fbcc2c6 100644 --- a/packages/store/src/tightcoder/TightCoder.sol +++ b/packages/store/src/tightcoder/TightCoder.sol @@ -1,8 +1,7 @@ // SPDX-License-Identifier: MIT pragma solidity >=0.8.0; -import { SchemaType } from "@latticexyz/schema-type/src/solidity/SchemaType.sol"; -import { Slice, SliceLib } from "../Slice.sol"; +import { Slice } from "../Slice.sol"; library TightCoder { /** diff --git a/packages/store/test/tightcoder/TightCoder.t.sol b/packages/store/test/tightcoder/TightCoder.t.sol index 5803407e88..b664f80920 100644 --- a/packages/store/test/tightcoder/TightCoder.t.sol +++ b/packages/store/test/tightcoder/TightCoder.t.sol @@ -3,7 +3,6 @@ pragma solidity >=0.8.0; import { Test } from "forge-std/Test.sol"; import { GasReporter } from "@latticexyz/gas-report/src/GasReporter.sol"; -import { SchemaType } from "@latticexyz/schema-type/src/solidity/SchemaType.sol"; import { SliceLib } from "../../src/Slice.sol"; import { EncodeArray } from "../../src/tightcoder/EncodeArray.sol";