remove ifdef that is always true

cabal file has a depends on exceptions 0.6.0
This commit is contained in:
Joey Hess 2015-01-15 12:05:39 -04:00
parent 4fcf65cda3
commit 66a6879dcf

View file

@ -85,9 +85,7 @@ newtype Annex a = Annex { runAnnex :: ReaderT (MVar AnnexState) IO a }
MonadReader (MVar AnnexState), MonadReader (MVar AnnexState),
MonadCatch, MonadCatch,
MonadThrow, MonadThrow,
#if MIN_VERSION_exceptions(0,6,0)
MonadMask, MonadMask,
#endif
Functor, Functor,
Applicative Applicative
) )