From c68592424b7b011950741327633a5b9046379b2c Mon Sep 17 00:00:00 2001 From: JChoy Date: Tue, 16 Jan 2024 17:13:03 +0900 Subject: [PATCH] style: lint --- contracts/OctopusHeap.sol | 1 - contracts/SegmentedSegmentTree.sol | 1 - 2 files changed, 2 deletions(-) diff --git a/contracts/OctopusHeap.sol b/contracts/OctopusHeap.sol index 0c7a3b0..f2448ef 100644 --- a/contracts/OctopusHeap.sol +++ b/contracts/OctopusHeap.sol @@ -30,7 +30,6 @@ import "./SignificantBit.sol"; * * 🐙🐙🐙🐙🐙🐙🐙🐙🐙🐙🐙🐙🐙🐙🐙🐙 */ - library OctopusHeap { using PackedUint256 for uint256; using SignificantBit for uint256; diff --git a/contracts/SegmentedSegmentTree.sol b/contracts/SegmentedSegmentTree.sol index 92337ef..f4a4e81 100644 --- a/contracts/SegmentedSegmentTree.sol +++ b/contracts/SegmentedSegmentTree.sol @@ -26,7 +26,6 @@ import "./DirtyUint64.sol"; * * 🌲🌲🌲🌲🌲🌲🌲🌲🌲🌲🌲🌲🌲🌲🌲🌲🌲🌲🌲🌲🌲🌲🌲🌲🌲🌲🌲🌲🌲🌲🌲🌲 */ - library SegmentedSegmentTree { using PackedUint256 for uint256; using DirtyUint64 for uint64;