removing a warning.

This commit is contained in:
Kazu Yamamoto 2014-10-06 15:55:16 +09:00
parent ef371a7ebf
commit 33d6f38a20
1 changed files with 1 additions and 1 deletions

View File

@ -1,13 +1,13 @@
{-# LANGUAGE CPP #-} {-# LANGUAGE CPP #-}
module Language.Haskell.GhcMod.Utils where module Language.Haskell.GhcMod.Utils where
import Control.Applicative ((<$>))
import Language.Haskell.GhcMod.Error import Language.Haskell.GhcMod.Error
import MonadUtils (MonadIO, liftIO) import MonadUtils (MonadIO, liftIO)
import System.Directory (getCurrentDirectory, setCurrentDirectory) import System.Directory (getCurrentDirectory, setCurrentDirectory)
import System.Exit (ExitCode(..)) import System.Exit (ExitCode(..))
import System.Process (readProcessWithExitCode) import System.Process (readProcessWithExitCode)
#ifndef SPEC #ifndef SPEC
import Control.Applicative ((<$>))
import System.Environment import System.Environment
import System.FilePath ((</>), takeDirectory) import System.FilePath ((</>), takeDirectory)
#endif #endif