summaryrefslogtreecommitdiff
path: root/Annex.hs
diff options
context:
space:
mode:
authorGravatar Joey Hess <joey@kitenet.net>2011-12-20 14:37:53 -0400
committerGravatar Joey Hess <joey@kitenet.net>2011-12-20 14:37:53 -0400
commitee3b5b2a4279292d55af43c772cdfd0c56420798 (patch)
tree0227fb4732ef376ac9123a9a89b924793ed841e2 /Annex.hs
parent6897460d350df41f1e98147f96fde1b66171bc19 (diff)
use Common in a few more modules
Diffstat (limited to 'Annex.hs')
-rw-r--r--Annex.hs6
1 files changed, 3 insertions, 3 deletions
diff --git a/Annex.hs b/Annex.hs
index acc38a5db..3021732f0 100644
--- a/Annex.hs
+++ b/Annex.hs
@@ -29,7 +29,7 @@ import Common
import qualified Git
import qualified Git.Config
import Git.CatFile
-import Git.Queue
+import qualified Git.Queue
import Types.Backend
import qualified Types.Remote
import Types.Crypto
@@ -57,7 +57,7 @@ data AnnexState = AnnexState
{ repo :: Git.Repo
, backends :: [Backend Annex]
, remotes :: [Types.Remote.Remote Annex]
- , repoqueue :: Queue
+ , repoqueue :: Git.Queue.Queue
, output :: OutputType
, force :: Bool
, fast :: Bool
@@ -80,7 +80,7 @@ newState gitrepo = AnnexState
{ repo = gitrepo
, backends = []
, remotes = []
- , repoqueue = Git.Queue.empty
+ , repoqueue = Git.Queue.new
, output = NormalOutput
, force = False
, fast = False