summaryrefslogtreecommitdiff
path: root/BackendList.hs
diff options
context:
space:
mode:
authorGravatar Joey Hess <joey@kitenet.net>2011-07-01 16:00:44 -0400
committerGravatar Joey Hess <joey@kitenet.net>2011-07-01 16:01:04 -0400
commit2cdacfbae6519eceed2d5dcbea052de244a0b8ec (patch)
tree3504d84794736973dd5a77e1891bc76873576d4e /BackendList.hs
parent6ba866ca738d6a63858916f84979cfd346bcb403 (diff)
remove URL backend
Diffstat (limited to 'BackendList.hs')
-rw-r--r--BackendList.hs2
1 files changed, 0 insertions, 2 deletions
diff --git a/BackendList.hs b/BackendList.hs
index bc3fd8314..e4e1d76fe 100644
--- a/BackendList.hs
+++ b/BackendList.hs
@@ -10,12 +10,10 @@ module BackendList (allBackends) where
-- When adding a new backend, import it here and add it to the list.
import qualified Backend.WORM
import qualified Backend.SHA
-import qualified Backend.URL
import Types
allBackends :: [Backend Annex]
allBackends = concat
[ Backend.WORM.backends
, Backend.SHA.backends
- , Backend.URL.backends
]