diff options
author | Joey Hess <joey@kitenet.net> | 2011-11-11 01:52:58 -0400 |
---|---|---|
committer | Joey Hess <joey@kitenet.net> | 2011-11-11 01:52:58 -0400 |
commit | 637b5feb45013f69f3aacbafeb796de666d3faa3 (patch) | |
tree | 17e5506c3715be46318d15dd76ec474641faffe2 /Common | |
parent | b327227ba596d4fc5012138d03390c3eb861b808 (diff) |
lint
Diffstat (limited to 'Common')
-rw-r--r-- | Common/Annex.hs | 21 |
1 files changed, 7 insertions, 14 deletions
diff --git a/Common/Annex.hs b/Common/Annex.hs index 6b5bc31de..e90825f0e 100644 --- a/Common/Annex.hs +++ b/Common/Annex.hs @@ -1,15 +1,8 @@ -module Common.Annex ( - module Common, - module Types, - module Types.UUID, - module Annex, - module Locations, - module Messages, -) where +module Common.Annex (module X) where -import Common -import Types -import Types.UUID (toUUID, fromUUID) -import Annex (gitRepo, inRepo, fromRepo) -import Locations -import Messages +import Common as X +import Types as X +import Types.UUID as X (toUUID, fromUUID) +import Annex as X (gitRepo, inRepo, fromRepo) +import Locations as X +import Messages as X |