From e5aff2ec9e3e95710e83354cec431e3bd1e29652 Mon Sep 17 00:00:00 2001 From: aBear Date: Wed, 2 Oct 2024 14:30:40 +0200 Subject: [PATCH] nits --- mod/primitives/pkg/encoding/json/json.go | 6 ------ 1 file changed, 6 deletions(-) diff --git a/mod/primitives/pkg/encoding/json/json.go b/mod/primitives/pkg/encoding/json/json.go index 93c1947cc8..862d8a2acc 100644 --- a/mod/primitives/pkg/encoding/json/json.go +++ b/mod/primitives/pkg/encoding/json/json.go @@ -33,16 +33,10 @@ type Marshaler = json.Marshaler // that can unmarshal a JSON description of themselves. type Unmarshaler = json.Unmarshaler -// Marshal is a wrapper for gojson.Marshal, which provides high-performance JSON -// encoding. var Marshal = json.Marshal -// MarshalIndent is a wrapper for gojson.MarshalIndent, which provides -// high-performance JSON encoding with indentation. var MarshalIndent = json.MarshalIndent -// Unmarshal is a wrapper for gojson.Unmarshal, which provides high-performance -// JSON decoding. var Unmarshal = json.Unmarshal // RawMessage is an alias for json.RawMessage, represensting a raw encoded JSON