diff options
Diffstat (limited to 'BackendList.hs')
-rw-r--r-- | BackendList.hs | 2 |
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 ] |