Remove 'normalize' from HPath, since it's not needed

This commit is contained in:
2016-05-09 17:04:26 +02:00
parent 687a113252
commit 3da8533b48

View File

@@ -33,7 +33,6 @@ module HPath
-- * Path Conversion
,fromAbs
,fromRel
,normalize
,toFilePath
-- * Path Operations
,(</>)
@@ -224,8 +223,6 @@ fromAbs = toFilePath
fromRel :: RelC r => Path r -> ByteString
fromRel = toFilePath
normalize :: Path t -> Path t
normalize (MkPath l) = MkPath $ normalise l
--------------------------------------------------------------------------------