summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorJoey Hess2017-11-19 13:12:43 -0400
committerJoey Hess2017-11-19 13:12:43 -0400
commit143996429e594def4c31d1346713433335758128 (patch)
tree7bdc59eab6a3628242e40bf4895dcd2aabf1834f /src
parent12beba0367d14f9c52adf72dd36e9cf5a8e35761 (diff)
remove dead code
Diffstat (limited to 'src')
-rw-r--r--src/Propellor/Property/DiskImage/PartSpec.hs3
1 files changed, 0 insertions, 3 deletions
diff --git a/src/Propellor/Property/DiskImage/PartSpec.hs b/src/Propellor/Property/DiskImage/PartSpec.hs
index f7492589..405c61b0 100644
--- a/src/Propellor/Property/DiskImage/PartSpec.hs
+++ b/src/Propellor/Property/DiskImage/PartSpec.hs
@@ -69,6 +69,3 @@ extended s = adjustp s $ \p -> p { partType = Extended }
adjustp :: PartSpec t -> (Partition -> Partition) -> PartSpec t
adjustp (mp, o, p, t) f = (mp, o, f . p, t)
-
-adjustt :: PartSpec t -> (t -> t) -> PartSpec t
-adjustt (mp, o, p, t) f = (mp, o, p, f t)