From b8ef9fc4bcccc6c024edaa8e9c91a6bf87f83dd9 Mon Sep 17 00:00:00 2001 From: kim <89579420+NyaaaWhatsUpDoc@users.noreply.github.com> Date: Tue, 14 Jan 2025 14:23:28 +0000 Subject: bump uptrace/bun dependencies from 1.2.6 to 1.2.8 (#3645) --- vendor/github.com/buger/jsonparser/bytes_safe.go | 25 ------------------------ 1 file changed, 25 deletions(-) delete mode 100644 vendor/github.com/buger/jsonparser/bytes_safe.go (limited to 'vendor/github.com/buger/jsonparser/bytes_safe.go') diff --git a/vendor/github.com/buger/jsonparser/bytes_safe.go b/vendor/github.com/buger/jsonparser/bytes_safe.go deleted file mode 100644 index ff16a4a19..000000000 --- a/vendor/github.com/buger/jsonparser/bytes_safe.go +++ /dev/null @@ -1,25 +0,0 @@ -// +build appengine appenginevm - -package jsonparser - -import ( - "strconv" -) - -// See fastbytes_unsafe.go for explanation on why *[]byte is used (signatures must be consistent with those in that file) - -func equalStr(b *[]byte, s string) bool { - return string(*b) == s -} - -func parseFloat(b *[]byte) (float64, error) { - return strconv.ParseFloat(string(*b), 64) -} - -func bytesToString(b *[]byte) string { - return string(*b) -} - -func StringToBytes(s string) []byte { - return []byte(s) -} -- cgit v1.2.3