diff options
author | John MacFarlane <jgm@berkeley.edu> | 2017-02-23 21:54:03 +0100 |
---|---|---|
committer | John MacFarlane <jgm@berkeley.edu> | 2017-02-23 21:54:03 +0100 |
commit | 35922ffa324eaba4e853a7c4b5517ddb505723a1 (patch) | |
tree | 1796802f99970c157b9e36112bc1f5e68753c273 /src/Text/Pandoc | |
parent | 4739620afe768329f3f92d23608b395bb715a136 (diff) | |
download | pandoc-35922ffa324eaba4e853a7c4b5517ddb505723a1.tar.gz |
Removed unnecessary import.
Diffstat (limited to 'src/Text/Pandoc')
-rw-r--r-- | src/Text/Pandoc/Error.hs | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/src/Text/Pandoc/Error.hs b/src/Text/Pandoc/Error.hs index 5866c2127..159f4340c 100644 --- a/src/Text/Pandoc/Error.hs +++ b/src/Text/Pandoc/Error.hs @@ -1,4 +1,4 @@ -{-# LANGUAGE DeriveDataTypeable, DeriveGeneric, CPP #-} +{-# LANGUAGE DeriveDataTypeable, DeriveGeneric #-} {- Copyright (C) 2006-2016 John MacFarlane <jgm@berkeley.edu> @@ -39,10 +39,6 @@ import Data.Generics (Typeable) import GHC.Generics (Generic) import Control.Exception (Exception) import Text.Pandoc.Shared (err) -#if MIN_VERSION_base(4,9,0) -import qualified System.IO.Error (IOError, ioError) -#else -#endif type Input = String |