aboutsummaryrefslogtreecommitdiff
path: root/Remote/External
diff options
context:
space:
mode:
authorGravatar Joey Hess <joey@kitenet.net>2013-12-27 13:07:56 -0400
committerGravatar Joey Hess <joey@kitenet.net>2013-12-27 13:07:56 -0400
commit48d5e06041ce8c4ad0c6754fe210116f4cc0a412 (patch)
tree370dd802a7c18218b9141862ef76cad5bc92eca3 /Remote/External
parentbee2200ca2b8d28b9bb7d4f0449627914a6aecbc (diff)
defer SETSTATE and GETSTATE for now
TAHOE-LAFS may use these eventually, but that's TBD and none of git-annex's own special remotes need that, except for the web special remote's urls.
Diffstat (limited to 'Remote/External')
-rw-r--r--Remote/External/Types.hs4
1 files changed, 0 insertions, 4 deletions
diff --git a/Remote/External/Types.hs b/Remote/External/Types.hs
index ff93af0ec..a4d49ddf1 100644
--- a/Remote/External/Types.hs
+++ b/Remote/External/Types.hs
@@ -157,8 +157,6 @@ data RemoteRequest
| DIRHASH Key
| SETCONFIG Setting String
| GETCONFIG Setting
- | SETSTATE Key String
- | GETSTATE Key
deriving (Show)
instance Receivable RemoteRequest where
@@ -167,8 +165,6 @@ instance Receivable RemoteRequest where
parseCommand "DIRHASH" = parse1 DIRHASH
parseCommand "SETCONFIG" = parse2 SETCONFIG
parseCommand "GETCONFIG" = parse1 GETCONFIG
- parseCommand "SETSTATE" = parse2 SETSTATE
- parseCommand "GETSTATE" = parse1 GETSTATE
parseCommand _ = parseFail
-- Responses to RemoteRequest.