rest of the deserializeKey renameing

This commit is contained in:
Joey Hess 2019-01-14 13:17:47 -04:00
parent 1791447cc8
commit 303e828b7c
No known key found for this signature in database
GPG key ID: DB12DB0FF05F8F38
15 changed files with 19 additions and 19 deletions

8
Key.hs
View file

@ -14,8 +14,8 @@ module Key (
buildKey,
keyParser,
serializeKey,
serializeKey,
deserializeKey',
serializeKey',
deserializeKey,
deserializeKey',
nonChunkKey,
chunkKeyOffset,
@ -179,8 +179,8 @@ instance Arbitrary Key where
<*> ((succ . abs <$>) <$> arbitrary) -- chunknum cannot be 0 or negative
instance Hashable Key where
hashIO32 = hashIO32 . deserializeKey'
hashIO64 = hashIO64 . deserializeKey'
hashIO32 = hashIO32 . serializeKey'
hashIO64 = hashIO64 . serializeKey'
instance ToJSON' Key where
toJSON' = toJSON' . serializeKey