diff options
| author | Jasper Van der Jeugt <jaspervdj@gmail.com> | 2010-01-17 09:57:32 +0100 |
|---|---|---|
| committer | Jasper Van der Jeugt <jaspervdj@gmail.com> | 2010-01-17 09:57:32 +0100 |
| commit | 6bacab4f22213df62d6162296a209173701171b8 (patch) | |
| tree | 1ac75be0ceae70ccdb52dbfe5ab916e6f0631dc5 /src/Text | |
| parent | d6c2cec610d37e89011ea9aa295fb33d47929eab (diff) | |
| download | hakyll-6bacab4f22213df62d6162296a209173701171b8.tar.gz | |
Fixed warnings when compiling with the new GHC 6.12.1.
Diffstat (limited to 'src/Text')
| -rw-r--r-- | src/Text/Hakyll/Page.hs | 2 | ||||
| -rw-r--r-- | src/Text/Hakyll/Render.hs | 3 | ||||
| -rw-r--r-- | src/Text/Hakyll/Renderable.hs | 1 | ||||
| -rw-r--r-- | src/Text/Hakyll/Renderables.hs | 1 |
4 files changed, 2 insertions, 5 deletions
diff --git a/src/Text/Hakyll/Page.hs b/src/Text/Hakyll/Page.hs index 652a1c6..0c912a9 100644 --- a/src/Text/Hakyll/Page.hs +++ b/src/Text/Hakyll/Page.hs @@ -13,7 +13,7 @@ import Data.Maybe (fromMaybe) import Control.Parallel.Strategies (rdeepseq, ($|)) import Control.Monad.Reader (liftIO) -import System.FilePath (FilePath, takeExtension) +import System.FilePath (takeExtension) import System.IO import Text.Hakyll.Hakyll (Hakyll) diff --git a/src/Text/Hakyll/Render.hs b/src/Text/Hakyll/Render.hs index 870c953..c529d04 100644 --- a/src/Text/Hakyll/Render.hs +++ b/src/Text/Hakyll/Render.hs @@ -10,11 +10,10 @@ module Text.Hakyll.Render , css ) where -import Control.Monad (unless, mapM) +import Control.Monad (unless) import Control.Monad.Reader (liftIO) import System.Directory (copyFile) -import System.IO import Text.Hakyll.Hakyll (Hakyll) import Text.Hakyll.Context (ContextManipulation) diff --git a/src/Text/Hakyll/Renderable.hs b/src/Text/Hakyll/Renderable.hs index cafdb3c..bb4f71f 100644 --- a/src/Text/Hakyll/Renderable.hs +++ b/src/Text/Hakyll/Renderable.hs @@ -3,7 +3,6 @@ module Text.Hakyll.Renderable ) where import Text.Hakyll.Hakyll (Hakyll) -import System.FilePath (FilePath) import Text.Hakyll.Context (Context) -- | A class for datatypes that can be rendered to pages. diff --git a/src/Text/Hakyll/Renderables.hs b/src/Text/Hakyll/Renderables.hs index 19f25b5..780f1e4 100644 --- a/src/Text/Hakyll/Renderables.hs +++ b/src/Text/Hakyll/Renderables.hs @@ -6,7 +6,6 @@ module Text.Hakyll.Renderables ) where import Text.Hakyll.Hakyll (Hakyll) -import System.FilePath (FilePath) import qualified Data.Map as M import Text.Hakyll.Page import Text.Hakyll.Renderable |
