Skip to content

Commit c104c5d

Browse files
committed
Remove unused exports
An unused 'Show' instance was also removed.
1 parent 97e9445 commit c104c5d

File tree

2 files changed

+2
-6
lines changed

2 files changed

+2
-6
lines changed

Data/HashMap/Base.hs

+1-4
Original file line numberDiff line numberDiff line change
@@ -23,11 +23,9 @@ module Data.HashMap.Base
2323
, lookupDefault
2424
, (!)
2525
, insert
26-
, insertInternal
2726
, insertWith
2827
, unsafeInsert
2928
, delete
30-
, deleteInternal
3129
, adjust
3230
, update
3331
, alter
@@ -37,7 +35,6 @@ module Data.HashMap.Base
3735
, union
3836
, unionWith
3937
, unionWithKey
40-
, unionWithKeyInternal
4138
, unions
4239

4340
-- * Transformations
@@ -143,7 +140,7 @@ hash :: H.Hashable a => a -> Hash
143140
hash = fromIntegral . H.hash
144141

145142
data Leaf k v = L !k v
146-
deriving (Eq, Show)
143+
deriving Eq
147144

148145
instance (NFData k, NFData v) => NFData (Leaf k v) where
149146
rnf (L k v) = rnf k `seq` rnf v

Data/HashMap/Strict.hs

+1-2
Original file line numberDiff line numberDiff line change
@@ -99,8 +99,7 @@ import qualified Data.HashMap.Base as HM
9999
import Data.HashMap.Base hiding (
100100
alter, adjust, fromList, fromListWith, insert, insertWith, differenceWith,
101101
intersectionWith, intersectionWithKey, map, mapWithKey, mapMaybe,
102-
mapMaybeWithKey, singleton, update, unionWith, unionWithKey,
103-
unionWithKeyInternal)
102+
mapMaybeWithKey, singleton, update, unionWith, unionWithKey)
104103
import Data.HashMap.Unsafe (runST)
105104

106105
-- $strictness

0 commit comments

Comments
 (0)