From 852674b16777c9a460eda737a4b5cc5be72eeff4 Mon Sep 17 00:00:00 2001
From: Brian Tiger Chow <brian.holderchow@gmail.com>
Date: Fri, 7 Nov 2014 18:53:25 -0800
Subject: [PATCH] chore(pin) rm commented code

---
 core/commands2/pin.go | 13 -------------
 1 file changed, 13 deletions(-)

diff --git a/core/commands2/pin.go b/core/commands2/pin.go
index 4a43fa96c..2b06bdf22 100644
--- a/core/commands2/pin.go
+++ b/core/commands2/pin.go
@@ -24,19 +24,6 @@ var pinCmd = &cmds.Command{
 		opt, _ := req.Option("recursive")
 		recursive, _ := opt.(bool) // false if cast fails.
 
-		/*depth := 1 // default (non recursive)
-
-		// if recursive, set depth flag
-		if recursive {
-			opt, found := req.Option("depth")
-			if d, ok := opt.(int); found && ok {
-				depth = d
-			} else {
-				res.SetError(errors.New("cast error"), cmds.ErrNormal)
-				return
-			}
-		}*/
-
 		paths, err := internal.ToStrings(req.Arguments())
 		if err != nil {
 			res.SetError(err, cmds.ErrNormal)
-- 
GitLab