summaryrefslogtreecommitdiff
path: root/Utility
diff options
context:
space:
mode:
authorGravatar Joey Hess <joeyh@joeyh.name>2016-02-23 20:35:32 -0400
committerGravatar Joey Hess <joeyh@joeyh.name>2016-02-23 20:35:32 -0400
commitec5e6d7dec82f06be9600a012c5aaf01a30f6af7 (patch)
tree8df5c2f43faa81cff5126529f7c4c5b95e36a6bd /Utility
parent3aab18a4c171b6f812bfe89877401421d293a515 (diff)
remove support for network older than 2.4
debian stable has 2.4
Diffstat (limited to 'Utility')
-rw-r--r--Utility/URI.hs18
1 files changed, 0 insertions, 18 deletions
diff --git a/Utility/URI.hs b/Utility/URI.hs
deleted file mode 100644
index e68fda58d..000000000
--- a/Utility/URI.hs
+++ /dev/null
@@ -1,18 +0,0 @@
-{- Network.URI
- -
- - Copyright 2014 Joey Hess <id@joeyh.name>
- -
- - License: BSD-2-clause
- -}
-
-{-# LANGUAGE CPP #-}
-
-module Utility.URI where
-
--- Old versions of network lacked an Ord for URI
-#if ! MIN_VERSION_network(2,4,0)
-import Network.URI
-
-instance Ord URI where
- a `compare` b = show a `compare` show b
-#endif