summaryrefslogtreecommitdiff
path: root/RemoteDaemon
diff options
context:
space:
mode:
authorJoey Hess <joeyh@joeyh.name>2016-01-20 16:36:33 -0400
committerJoey Hess <joeyh@joeyh.name>2016-01-20 16:36:33 -0400
commit737e45156eb705be69f076ede54f8c029b9ee315 (patch)
tree1ce07bbd848a34090aee0138f832ce14f51b673c /RemoteDaemon
parent8dd5d180f1f662a8afcb02a33f13e3e1c1c3b7c8 (diff)
remove 163 lines of code without changing anything except imports
Diffstat (limited to 'RemoteDaemon')
-rw-r--r--RemoteDaemon/Common.hs2
-rw-r--r--RemoteDaemon/Transport/GCrypt.hs2
-rw-r--r--RemoteDaemon/Transport/Ssh.hs2
3 files changed, 3 insertions, 3 deletions
diff --git a/RemoteDaemon/Common.hs b/RemoteDaemon/Common.hs
index 50524b44c0..9efc0c4a03 100644
--- a/RemoteDaemon/Common.hs
+++ b/RemoteDaemon/Common.hs
@@ -12,7 +12,7 @@ module RemoteDaemon.Common
) where
import qualified Annex
-import Common.Annex
+import Annex.Common
import RemoteDaemon.Types
import qualified Git
import Annex.CatFile
diff --git a/RemoteDaemon/Transport/GCrypt.hs b/RemoteDaemon/Transport/GCrypt.hs
index 53bcfec32e..48b9da179c 100644
--- a/RemoteDaemon/Transport/GCrypt.hs
+++ b/RemoteDaemon/Transport/GCrypt.hs
@@ -7,7 +7,7 @@
module RemoteDaemon.Transport.GCrypt (transport) where
-import Common.Annex
+import Annex.Common
import RemoteDaemon.Types
import RemoteDaemon.Common
import RemoteDaemon.Transport.Ssh (transportUsingCmd)
diff --git a/RemoteDaemon/Transport/Ssh.hs b/RemoteDaemon/Transport/Ssh.hs
index f441913c91..eda6bca1ce 100644
--- a/RemoteDaemon/Transport/Ssh.hs
+++ b/RemoteDaemon/Transport/Ssh.hs
@@ -7,7 +7,7 @@
module RemoteDaemon.Transport.Ssh (transport, transportUsingCmd) where
-import Common.Annex
+import Annex.Common
import Annex.Ssh
import RemoteDaemon.Types
import RemoteDaemon.Common