Skip to content

Commit

Permalink
Fix for quad.Bytes after merge
Browse files Browse the repository at this point in the history
  • Loading branch information
Luis Fung committed Feb 16, 2019
2 parents 4d6130d + 6a7823c commit 9c5a6c6
Showing 1 changed file with 0 additions and 7 deletions.
7 changes: 0 additions & 7 deletions quad/value.go
Original file line number Diff line number Diff line change
Expand Up @@ -447,13 +447,6 @@ func (b Bytes) String() string {
return b.TypedString().String()
}
func (b Bytes) Native() interface{} {
// v, err := base64.StdEncoding.DecodeString(string(b))
// if err != nil {
// TODO: (dennwc) should this panic?
// v = make([]byte, 0)
// v = []byte(b)
// }
// return []byte(v)
return []byte(b)
}
func (b Bytes) Equal(v Value) bool {
Expand Down

0 comments on commit 9c5a6c6

Please sign in to comment.