From 57fd6b8a1b51eb99a8827bf9e69526cbefdec58c Mon Sep 17 00:00:00 2001 From: Konstantin Zudov Date: Tue, 6 Oct 2015 12:04:50 +0300 Subject: [PATCH] Remove !MIN_VERSION_time(1,5,0) conditional The cabal file and stackage resolver says that time is `>= 1.5.0` anyway. --- Echo.hs | 3 --- 1 file changed, 3 deletions(-) diff --git a/Echo.hs b/Echo.hs index 397fb99..c30320b 100644 --- a/Echo.hs +++ b/Echo.hs @@ -11,9 +11,6 @@ module Echo where import Control.Concurrent.MVar import Control.Monad.Trans (MonadIO(..)) -#if !MIN_VERSION_time(1,5,0) -import System.Locale -#endif import Data.Time import Language.Haskell.TH import Language.Haskell.TH.Lift