From 4bbf5f2c30460b65912b7e88794be52ce089c17f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E4=B8=96=E7=95=8C?= Date: Sat, 18 Mar 2023 17:46:14 +0800 Subject: [PATCH] Fix linkedhashmap --- common/x/linkedhashmap/map.go | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/common/x/linkedhashmap/map.go b/common/x/linkedhashmap/map.go index 5b31a92..d51aafa 100644 --- a/common/x/linkedhashmap/map.go +++ b/common/x/linkedhashmap/map.go @@ -36,7 +36,11 @@ func (m *Map[K, V]) ContainsKey(key K) bool { func (m *Map[K, V]) Get(key K) (V, bool) { m.init() value, loaded := m.rawMap[key] - return value.Value.Value, loaded + if loaded { + return value.Value.Value, true + } else { + return common.DefaultValue[V](), false + } } func (m *Map[K, V]) Put(key K, value V) V {