summaryrefslogtreecommitdiff
path: root/src/Language/GraphQL/AST
diff options
context:
space:
mode:
authorEugen Wissner <belka@caraus.de>2024-08-04 09:05:50 +0200
committerEugen Wissner <belka@caraus.de>2024-08-04 09:06:03 +0200
commite02463f452fc3ce82cb93c8c9e916264eb89c337 (patch)
tree1db56451a6e3ca663548c8c0d137159215c22f3a /src/Language/GraphQL/AST
parent9d853798263742154cae682e368f8d2562fdb7ef (diff)
downloadgraphql-e02463f452fc3ce82cb93c8c9e916264eb89c337.tar.gz
Remove unused liftA2 import
Diffstat (limited to 'src/Language/GraphQL/AST')
-rw-r--r--src/Language/GraphQL/AST/Lexer.hs2
-rw-r--r--src/Language/GraphQL/AST/Parser.hs2
2 files changed, 2 insertions, 2 deletions
diff --git a/src/Language/GraphQL/AST/Lexer.hs b/src/Language/GraphQL/AST/Lexer.hs
index ab1f36f..2d91b9d 100644
--- a/src/Language/GraphQL/AST/Lexer.hs
+++ b/src/Language/GraphQL/AST/Lexer.hs
@@ -29,7 +29,7 @@ module Language.GraphQL.AST.Lexer
, unicodeBOM
) where
-import Control.Applicative (Alternative(..), liftA2)
+import Control.Applicative (Alternative(..))
import Data.Char (chr, digitToInt, isAsciiLower, isAsciiUpper, ord)
import Data.Foldable (foldl')
import Data.List (dropWhileEnd)
diff --git a/src/Language/GraphQL/AST/Parser.hs b/src/Language/GraphQL/AST/Parser.hs
index e19823c..049876e 100644
--- a/src/Language/GraphQL/AST/Parser.hs
+++ b/src/Language/GraphQL/AST/Parser.hs
@@ -8,7 +8,7 @@ module Language.GraphQL.AST.Parser
( document
) where
-import Control.Applicative (Alternative(..), liftA2, optional)
+import Control.Applicative (Alternative(..), optional)
import Control.Applicative.Combinators (sepBy1)
import qualified Control.Applicative.Combinators.NonEmpty as NonEmpty
import Data.List.NonEmpty (NonEmpty(..))