summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorClint Adams <clint@debian.org>2018-03-28 22:24:27 -0400
committerClint Adams <clint@debian.org>2018-03-28 22:24:27 -0400
commit5fe2d10c984dcfcdff01c7d73ab8e8bf95d27b26 (patch)
treee0cbbcc1bddc29c7e07ebad2b958e24bca73ccb9
parentf013f29b60a0549c300b0aab0c6e128cb28298e0 (diff)
Drop spurious import of Alternative
-rw-r--r--Codec/Encryption/OpenPGP/ASCIIArmor/Decode.hs2
1 files changed, 1 insertions, 1 deletions
diff --git a/Codec/Encryption/OpenPGP/ASCIIArmor/Decode.hs b/Codec/Encryption/OpenPGP/ASCIIArmor/Decode.hs
index 08a951b..b62ff6a 100644
--- a/Codec/Encryption/OpenPGP/ASCIIArmor/Decode.hs
+++ b/Codec/Encryption/OpenPGP/ASCIIArmor/Decode.hs
@@ -12,7 +12,7 @@ module Codec.Encryption.OpenPGP.ASCIIArmor.Decode (
12 12
13import Codec.Encryption.OpenPGP.ASCIIArmor.Types 13import Codec.Encryption.OpenPGP.ASCIIArmor.Types
14import Codec.Encryption.OpenPGP.ASCIIArmor.Utils 14import Codec.Encryption.OpenPGP.ASCIIArmor.Utils
15import Control.Applicative (many, (<|>), (<$>), Alternative, (<*), (<*>), (*>), optional) 15import Control.Applicative (many, (<|>), (<$>), (<*), (<*>), (*>), optional)
16import Data.Attoparsec.ByteString (Parser, many1, string, inClass, notInClass, satisfy, word8, (<?>)) 16import Data.Attoparsec.ByteString (Parser, many1, string, inClass, notInClass, satisfy, word8, (<?>))
17import qualified Data.Attoparsec.ByteString as AS 17import qualified Data.Attoparsec.ByteString as AS
18import qualified Data.Attoparsec.ByteString.Lazy as AL 18import qualified Data.Attoparsec.ByteString.Lazy as AL