From 3e22786a1884d1e8aa1c22bd98a6c819294de097 Mon Sep 17 00:00:00 2001 From: Christoph Polcin Date: Fri, 24 Oct 2014 11:26:21 +0200 Subject: [PATCH] ref TODOs --- client.go | 2 ++ 1 file changed, 2 insertions(+) diff --git a/client.go b/client.go index 4434ac8..ec6cf93 100644 --- a/client.go +++ b/client.go @@ -69,6 +69,7 @@ func getProps(r *response, status string) *props { } func (c *Client) ReadDir(path string) ([]os.FileInfo, error) { + // TODO return newPathError path = FixSlashes(path) files := make([]os.FileInfo, 0) skipSelf := true @@ -118,6 +119,7 @@ func (c *Client) ReadDir(path string) ([]os.FileInfo, error) { } func (c *Client) Remove(path string) error { + // TODO return newPathError rs, err := c.reqDo("DELETE", path, nil) if err != nil { return err