From 4b1076fdd7032ae5845d8909078a94599e73bf80 Mon Sep 17 00:00:00 2001 From: yj-qin Date: Fri, 22 Mar 2024 16:58:48 +0800 Subject: [PATCH] Remove unused Debug bound --- hashmap/hashmap.mbt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hashmap/hashmap.mbt b/hashmap/hashmap.mbt index fbb67b926..02cc0b01b 100644 --- a/hashmap/hashmap.mbt +++ b/hashmap/hashmap.mbt @@ -254,7 +254,7 @@ fn next_index[K : Hash, V](self : HashMap[K, V], index : Int) -> Int { (index + 1) % self.capacity } -fn debug_entries[K : Debug + Show, V : Debug + Show]( +fn debug_entries[K : Show, V : Show]( self : HashMap[K, V] ) -> String { let mut s = ""