Commit b8d512e3 by Zachary Snow

remove unneeded imports

parent c262324a
...@@ -6,7 +6,6 @@ ...@@ -6,7 +6,6 @@
module Convert.Interface (convert) where module Convert.Interface (convert) where
import Data.List (lookup)
import Data.Maybe (fromJust, mapMaybe) import Data.Maybe (fromJust, mapMaybe)
import Control.Monad.Writer import Control.Monad.Writer
import qualified Data.Map.Strict as Map import qualified Data.Map.Strict as Map
......
...@@ -17,8 +17,7 @@ module Language.SystemVerilog.AST.ModuleItem ...@@ -17,8 +17,7 @@ module Language.SystemVerilog.AST.ModuleItem
) where ) where
import Data.List (intercalate) import Data.List (intercalate)
import Data.Maybe (maybe, fromJust, isJust) import Data.Maybe (fromJust, isJust)
import Data.Either (either)
import Text.Printf (printf) import Text.Printf (printf)
import Language.SystemVerilog.AST.ShowHelp import Language.SystemVerilog.AST.ShowHelp
......
...@@ -16,7 +16,7 @@ module Language.SystemVerilog.Parser.Preprocess ...@@ -16,7 +16,7 @@ module Language.SystemVerilog.Parser.Preprocess
import Control.Monad.Except import Control.Monad.Except
import Control.Monad.State import Control.Monad.State
import Data.Char (ord) import Data.Char (ord)
import Data.List (span, dropWhileEnd, splitAt, tails, isPrefixOf, findIndex) import Data.List (dropWhileEnd, tails, isPrefixOf, findIndex)
import Data.Maybe (isJust, fromJust) import Data.Maybe (isJust, fromJust)
import System.Directory (findFile) import System.Directory (findFile)
import System.FilePath (dropFileName) import System.FilePath (dropFileName)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment