Add missing (<$>) imports

This commit is contained in:
2016-05-09 18:53:26 +02:00
parent 6b6c7f05c9
commit 930b021a32
3 changed files with 12 additions and 0 deletions

View File

@@ -15,6 +15,10 @@
module HPath.IO.Errors where
import Control.Applicative
(
(<$>)
)
import Control.Exception
import Control.Monad
(

View File

@@ -3,6 +3,10 @@
module HPath.IO.GetDirsFilesSpec where
import Control.Applicative
(
(<$>)
)
import Data.List
(
sort

View File

@@ -3,6 +3,10 @@
module Utils where
import Control.Applicative
(
(<$>)
)
import HPath.IO
import HPath.IO.Errors
import HPath.IO.Utils