aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGravatar Joey Hess <joeyh@joeyh.name>2016-01-20 13:25:22 -0400
committerGravatar Joey Hess <joeyh@joeyh.name>2016-01-20 13:25:22 -0400
commit2dacf40a9ed734ecc723242f7fd68d24b74052f8 (patch)
tree9882e3396af58571ebe1fafec46f318d11edaa53
parent91c9f6f086cf6d503c3ecb10a211c0c946e554eb (diff)
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.
-rw-r--r--Command/ContentLocation.hs2
-rw-r--r--Command/ExamineKey.hs2
-rw-r--r--Command/LookupKey.hs2
3 files changed, 3 insertions, 3 deletions
diff --git a/Command/ContentLocation.hs b/Command/ContentLocation.hs
index 8a5eaa7a9..d228636f6 100644
--- a/Command/ContentLocation.hs
+++ b/Command/ContentLocation.hs
@@ -14,7 +14,7 @@ import Annex.Content
import Types.Key
cmd :: Command
-cmd = noCommit $ noMessages $
+cmd = noCommit $
command "contentlocation" SectionPlumbing
"looks up content for a key"
(paramRepeating paramKey)
diff --git a/Command/ExamineKey.hs b/Command/ExamineKey.hs
index 55f72f71b..9c59697f3 100644
--- a/Command/ExamineKey.hs
+++ b/Command/ExamineKey.hs
@@ -15,7 +15,7 @@ import Command.Find (parseFormatOption, showFormatted, keyVars)
import Types.Key
cmd :: Command
-cmd = noCommit $ noMessages $ withGlobalOptions [jsonOption] $
+cmd = noCommit $ withGlobalOptions [jsonOption] $
command "examinekey" SectionPlumbing
"prints information from a key"
(paramRepeating paramKey)
diff --git a/Command/LookupKey.hs b/Command/LookupKey.hs
index 54023eab7..1a0d96935 100644
--- a/Command/LookupKey.hs
+++ b/Command/LookupKey.hs
@@ -14,7 +14,7 @@ import Annex.CatFile
import Types.Key
cmd :: Command
-cmd = notBareRepo $ noCommit $ noMessages $
+cmd = notBareRepo $ noCommit $
command "lookupkey" SectionPlumbing
"looks up key used for file"
(paramRepeating paramFile)