diff options
author | Joey Hess <joeyh@joeyh.name> | 2015-07-12 09:25:43 -0400 |
---|---|---|
committer | Joey Hess <joeyh@joeyh.name> | 2015-07-12 09:25:43 -0400 |
commit | acf8d5eb7d1e543a0cebb90b79d1b16695a1c5e3 (patch) | |
tree | fd45948ee3e932ff13b6449e46d77327ef3944d4 /Annex.hs | |
parent | d49e9f6a744c490cf4374039fde26c0eb57dc675 (diff) |
converted MetaData, eliminating a global value from Annex state .. beautiful
Diffstat (limited to 'Annex.hs')
-rw-r--r-- | Annex.hs | 3 |
1 files changed, 0 insertions, 3 deletions
@@ -57,7 +57,6 @@ import Types.UUID import Types.FileMatcher import Types.NumCopies import Types.LockCache -import Types.MetaData import Types.DesktopNotify import Types.CleanupActions #ifdef WITH_QUVI @@ -121,7 +120,6 @@ data AnnexState = AnnexState , lockcache :: LockCache , flags :: M.Map String Bool , fields :: M.Map String String - , modmeta :: [ModMeta] , cleanup :: M.Map CleanupAction (Annex ()) , sentinalstatus :: Maybe SentinalStatus , useragent :: Maybe String @@ -166,7 +164,6 @@ newState c r = AnnexState , lockcache = M.empty , flags = M.empty , fields = M.empty - , modmeta = [] , cleanup = M.empty , sentinalstatus = Nothing , useragent = Nothing |