diff options
Diffstat (limited to 'vendor/github.com/vmihailenco/msgpack/v5/safe.go')
-rw-r--r-- | vendor/github.com/vmihailenco/msgpack/v5/safe.go | 13 |
1 files changed, 0 insertions, 13 deletions
diff --git a/vendor/github.com/vmihailenco/msgpack/v5/safe.go b/vendor/github.com/vmihailenco/msgpack/v5/safe.go deleted file mode 100644 index 8352c9dce..000000000 --- a/vendor/github.com/vmihailenco/msgpack/v5/safe.go +++ /dev/null @@ -1,13 +0,0 @@ -// +build appengine - -package msgpack - -// bytesToString converts byte slice to string. -func bytesToString(b []byte) string { - return string(b) -} - -// stringToBytes converts string to byte slice. -func stringToBytes(s string) []byte { - return []byte(s) -} |