Skip to content

Commit

Permalink
Read/Show minor changes to make way for Easy
Browse files Browse the repository at this point in the history
  • Loading branch information
o_O authored and elliottt committed Nov 4, 2009
1 parent aad90d4 commit 6d4c33e
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion openid.cabal
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name: openid
version: 0.1.3.0
version: 0.1.4.0
cabal-version: >= 1.6
synopsis: An implementation of the OpenID-2.0 spec.
description: An implementation of the OpenID-2.0 spec.
Expand Down
2 changes: 1 addition & 1 deletion src/Network/OpenID/Association/Map.hs
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ import qualified Data.Map as Map

-- | A simple association manager based on Data.Map
newtype AssociationMap = AM (Map.Map String (UTCTime,Association))
deriving Show
deriving (Show,Read)

instance AssociationManager AssociationMap where
findAssociation (AM m) p = snd `fmap` Map.lookup (showProvider p) m
Expand Down
2 changes: 1 addition & 1 deletion src/Network/OpenID/Types.hs
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ data Association = Association
, assocHandle :: String
, assocMacKey :: [Word8]
, assocType :: AssocType
} deriving Show
} deriving (Show,Read)


-- | Parameter lists for communication with the server
Expand Down

0 comments on commit 6d4c33e

Please sign in to comment.