diff options
author | Ian Lynagh <igloo@earth.li> | 2009-07-07 12:15:48 +0000 |
---|---|---|
committer | Ian Lynagh <igloo@earth.li> | 2009-07-07 12:15:48 +0000 |
commit | 703ca1542c8e0983cc9d8eebce6e9f3dd3fd71e2 (patch) | |
tree | 3bc691cef188bfe99017ed25882ed45635f851fe /compiler/rename | |
parent | 7bb3d1fc79521d591cd9f824893963141a7997b6 (diff) | |
download | haskell-703ca1542c8e0983cc9d8eebce6e9f3dd3fd71e2.tar.gz |
Remove unused imports
Diffstat (limited to 'compiler/rename')
-rw-r--r-- | compiler/rename/RnEnv.lhs | 2 | ||||
-rw-r--r-- | compiler/rename/RnExpr.lhs | 1 | ||||
-rw-r--r-- | compiler/rename/RnHsDoc.hs | 1 | ||||
-rw-r--r-- | compiler/rename/RnSource.lhs | 1 |
4 files changed, 1 insertions, 4 deletions
diff --git a/compiler/rename/RnEnv.lhs b/compiler/rename/RnEnv.lhs index 2ecaf61295..955786b323 100644 --- a/compiler/rename/RnEnv.lhs +++ b/compiler/rename/RnEnv.lhs @@ -57,7 +57,7 @@ import Module ( Module, ModuleName ) import PrelNames ( mkUnboundName, rOOT_MAIN, iNTERACTIVE, consDataConKey, hasKey, forall_tv_RDR ) import UniqSupply -import BasicTypes ( IPName, mapIPName, Fixity ) +import BasicTypes import ErrUtils ( Message ) import SrcLoc import Outputable diff --git a/compiler/rename/RnExpr.lhs b/compiler/rename/RnExpr.lhs index c459b70c5b..86b41ae275 100644 --- a/compiler/rename/RnExpr.lhs +++ b/compiler/rename/RnExpr.lhs @@ -50,7 +50,6 @@ import SrcLoc import FastString import List ( unzip4 ) -import Control.Monad \end{code} diff --git a/compiler/rename/RnHsDoc.hs b/compiler/rename/RnHsDoc.hs index c556d2c3da..4d10edca5e 100644 --- a/compiler/rename/RnHsDoc.hs +++ b/compiler/rename/RnHsDoc.hs @@ -2,7 +2,6 @@ module RnHsDoc ( rnHaddock, rnHsDoc, rnLHsDoc, rnMbLHsDoc ) where import TcRnTypes -import TcRnMonad ( RnM ) import RnEnv ( dataTcOccs, lookupGreRn_maybe ) import HsSyn diff --git a/compiler/rename/RnSource.lhs b/compiler/rename/RnSource.lhs index 052b7e03d6..674ec78203 100644 --- a/compiler/rename/RnSource.lhs +++ b/compiler/rename/RnSource.lhs @@ -46,7 +46,6 @@ import Maybe ( isNothing ) import BasicTypes ( Boxity(..) ) import ListSetOps (findDupsEq) -import List import Control.Monad \end{code} |