Skip to content

Commit

Permalink
Remove some println debugging statements
Browse files Browse the repository at this point in the history
  • Loading branch information
TomWright committed Nov 12, 2020
1 parent 7616fa6 commit f080b55
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 3 deletions.
2 changes: 0 additions & 2 deletions node.go
Original file line number Diff line number Diff line change
Expand Up @@ -112,8 +112,6 @@ func ParseSelector(selector string) (Selector, error) {

nextSel := strings.TrimPrefix(sel.Current, ".")

fmt.Println(nextSel)

switch {
case strings.HasPrefix(nextSel, "(") && strings.HasSuffix(nextSel, ")"):
sel.Type = "DYNAMIC"
Expand Down
1 change: 0 additions & 1 deletion node_put.go
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,6 @@ func buildPutChain(n *Node) error {
nextNode := &Node{}

// Parse the selector.
fmt.Println(n.Selector.Remaining)
nextNode.Selector, err = ParseSelector(n.Selector.Remaining)
if err != nil {
return fmt.Errorf("failed to parse selector: %w", err)
Expand Down

0 comments on commit f080b55

Please sign in to comment.