Skip to content

Commit

Permalink
fix: copilot getting in the way
Browse files Browse the repository at this point in the history
Signed-off-by: Vincent Biret <[email protected]>
  • Loading branch information
baywet committed Aug 12, 2024
1 parent 8bbcde3 commit 8b97c2b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions json_parse_node.go
Original file line number Diff line number Diff line change
Expand Up @@ -146,8 +146,8 @@ func loadJsonTree(decoder *json.Decoder) (*JsonParseNode, error) {
return nil, nil
}

// setValue is obsolete, parse nodes are not meant to be settable externally
func (n *JsonParseNode) SearchetValue(value interface{}) {
// SetValue is obsolete, parse nodes are not meant to be settable externally
func (n *JsonParseNode) SetValue(value interface{}) {
n.setValue(value)
}

Expand Down

0 comments on commit 8b97c2b

Please sign in to comment.