aboutsummaryrefslogtreecommitdiff
path: root/Annex.hs
diff options
context:
space:
mode:
authorGravatar Joey Hess <joeyh@joeyh.name>2015-01-15 12:05:39 -0400
committerGravatar Joey Hess <joeyh@joeyh.name>2015-01-15 12:05:39 -0400
commit76e70677210a71142535adb05f2b4247b6136fd8 (patch)
treeeda5c287d89901eed5e20565b77ffefe6b6a2bbf /Annex.hs
parent3e0c966e1da392b5c9ecdbb0e0a115088a784b15 (diff)
remove ifdef that is always true
cabal file has a depends on exceptions 0.6.0
Diffstat (limited to 'Annex.hs')
-rw-r--r--Annex.hs2
1 files changed, 0 insertions, 2 deletions
diff --git a/Annex.hs b/Annex.hs
index e4c05c627..50c852526 100644
--- a/Annex.hs
+++ b/Annex.hs
@@ -85,9 +85,7 @@ newtype Annex a = Annex { runAnnex :: ReaderT (MVar AnnexState) IO a }
MonadReader (MVar AnnexState),
MonadCatch,
MonadThrow,
-#if MIN_VERSION_exceptions(0,6,0)
MonadMask,
-#endif
Functor,
Applicative
)