From 3da8533b48e36b84fd4c70b1a33e20b4ae5e70b5 Mon Sep 17 00:00:00 2001 From: Julian Ospald Date: Mon, 9 May 2016 17:04:26 +0200 Subject: [PATCH] Remove 'normalize' from HPath, since it's not needed --- src/HPath.hs | 3 --- 1 file changed, 3 deletions(-) diff --git a/src/HPath.hs b/src/HPath.hs index 8fc2c08..3a2729e 100644 --- a/src/HPath.hs +++ b/src/HPath.hs @@ -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 --------------------------------------------------------------------------------