diff options
author | Jesse Rosenthal <jrosenthal@jhu.edu> | 2016-09-01 06:28:55 -0400 |
---|---|---|
committer | Jesse Rosenthal <jrosenthal@jhu.edu> | 2016-09-02 09:18:09 -0400 |
commit | f72e3b58e8edd9d81c982ec9e9c54fbc0ba94dcd (patch) | |
tree | 47f9b918665a62784a8c83091b4df8791837b44d /src/Text/Pandoc/Compat/Directory.hs | |
parent | 7f676b534aa82ae44c62d854c5d29d46c3d2c30a (diff) | |
download | pandoc-f72e3b58e8edd9d81c982ec9e9c54fbc0ba94dcd.tar.gz |
Remove directory compat
directory 1.1 depends on base 4.5 (ghc 7.4) which we are no longer
supporting. So we don't have to use a compatibility layer for it.
Diffstat (limited to 'src/Text/Pandoc/Compat/Directory.hs')
-rw-r--r-- | src/Text/Pandoc/Compat/Directory.hs | 21 |
1 files changed, 0 insertions, 21 deletions
diff --git a/src/Text/Pandoc/Compat/Directory.hs b/src/Text/Pandoc/Compat/Directory.hs deleted file mode 100644 index 61dd5c525..000000000 --- a/src/Text/Pandoc/Compat/Directory.hs +++ /dev/null @@ -1,21 +0,0 @@ -{-# LANGUAGE CPP #-} -module Text.Pandoc.Compat.Directory ( getModificationTime ) - where - -#if MIN_VERSION_directory(1,2,0) -import System.Directory - - -#else -import qualified System.Directory as S -import Data.Time.Clock (UTCTime) -import Data.Time.Clock.POSIX -import System.Time - -getModificationTime :: FilePath -> IO UTCTime -getModificationTime fp = convert `fmap` S.getModificationTime fp - where - convert (TOD x _) = posixSecondsToUTCTime (realToFrac x) - -#endif - |