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

This commit is contained in:
Julian Ospald 2016-05-09 17:04:26 +02:00
parent 687a113252
commit 3da8533b48
No known key found for this signature in database
GPG Key ID: 511B62C09D50CD28
1 changed files with 0 additions and 3 deletions

View File

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