瀏覽代碼

remove commented codes

Xiang Li 13 年之前
父節點
當前提交
6821747763
共有 2 個文件被更改,包括 0 次插入16 次删除
  1. 0 15
      command.go
  2. 0 1
      etcd.go

+ 0 - 15
command.go

@@ -64,21 +64,6 @@ func (c *GetCommand) Apply(server *raft.Server) (interface{}, error) {
 	return etcdStore.Get(c.Key)
 }
 
-// List command
-// type ListCommand struct {
-// 	Prefix string `json:"prefix"`
-// }
-
-// // The name of the list command in the log
-// func (c *ListCommand) CommandName() string {
-// 	return "list"
-// }
-
-// // List all the keys have the given prefix path
-// func (c *ListCommand) Apply(server *raft.Server) (interface{}, error) {
-// 	return etcdStore.Get(c.Prefix)
-// }
-
 // Delete command
 type DeleteCommand struct {
 	Key string `json:"key"`

+ 0 - 1
etcd.go

@@ -581,6 +581,5 @@ func registerCommands() {
 	raft.RegisterCommand(&GetCommand{})
 	raft.RegisterCommand(&DeleteCommand{})
 	raft.RegisterCommand(&WatchCommand{})
-	//raft.RegisterCommand(&ListCommand{})
 	raft.RegisterCommand(&TestAndSetCommand{})
 }