Skip to content

Commit 69d625b

Browse files
DavidEichmannhvr
authored andcommitted
Remove unused imports.
Due to a bug in ghc, some unused imports do not yield warnings. This commit will remove such unused imports in preparation for the ghc bug fix (see https://ghc.haskell.org/trac/ghc/ticket/13064).
1 parent 77da9f6 commit 69d625b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Data/Text/Internal/Builder.hs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ module Data.Text.Internal.Builder
5959

6060
import Control.Monad.ST (ST, runST)
6161
import Data.Monoid (Monoid(..))
62-
#if MIN_VERSION_base(4,9,0)
62+
#if !MIN_VERSION_base(4,11,0) && MIN_VERSION_base(4,9,0)
6363
import Data.Semigroup (Semigroup(..))
6464
#endif
6565
import Data.Text.Internal (Text(..))

0 commit comments

Comments
 (0)