remove no longer needed noMessages

All three of these are using batch mode to drive their processing, so
there is no automatic output, and noMessages is no longer needed.
This commit is contained in:
Joey Hess 2016-01-20 13:25:22 -04:00
parent 6d79f9e755
commit f1daa83118
Failed to extract signature
3 changed files with 3 additions and 3 deletions

View file

@ -14,7 +14,7 @@ import Annex.Content
import Types.Key import Types.Key
cmd :: Command cmd :: Command
cmd = noCommit $ noMessages $ cmd = noCommit $
command "contentlocation" SectionPlumbing command "contentlocation" SectionPlumbing
"looks up content for a key" "looks up content for a key"
(paramRepeating paramKey) (paramRepeating paramKey)

View file

@ -15,7 +15,7 @@ import Command.Find (parseFormatOption, showFormatted, keyVars)
import Types.Key import Types.Key
cmd :: Command cmd :: Command
cmd = noCommit $ noMessages $ withGlobalOptions [jsonOption] $ cmd = noCommit $ withGlobalOptions [jsonOption] $
command "examinekey" SectionPlumbing command "examinekey" SectionPlumbing
"prints information from a key" "prints information from a key"
(paramRepeating paramKey) (paramRepeating paramKey)

View file

@ -14,7 +14,7 @@ import Annex.CatFile
import Types.Key import Types.Key
cmd :: Command cmd :: Command
cmd = notBareRepo $ noCommit $ noMessages $ cmd = notBareRepo $ noCommit $
command "lookupkey" SectionPlumbing command "lookupkey" SectionPlumbing
"looks up key used for file" "looks up key used for file"
(paramRepeating paramFile) (paramRepeating paramFile)