chore: remove commented code

This commit is contained in:
Derrick Hammer 2024-01-04 10:27:56 -05:00
parent bd3cbc694f
commit c5441b2e16
Signed by: pcfreak30
GPG Key ID: C997C339BE476FF2
1 changed files with 1 additions and 21 deletions

View File

@ -111,24 +111,4 @@ func (fv *FileVersion) CID() *encoding.CID {
return fv.PlaintextCID
}
return &fv.EncryptedCID.OriginalCID
} /*
func (fv *FileVersion) UnmarshalJSON(data []byte) error {
type tempFileVersion FileVersion
tvf := &tempFileVersion{}
// Initialize your properties, for example, to their zero values
tvf.Ts = 0
tvf.EncryptedCID = &encoding.EncryptedCID{}
tvf.PlaintextCID = &encoding.CID{}
tvf.Thumbnail = &FileVersionThumbnail{}
tvf.Hashes = []*encoding.Multihash{}
tvf.Ext = map[string]interface{}{}
// Define a temporary struct with the same structure as FileVersion
var result map[string]interface{}
// Unmarshal data into the temporary struct
if err := json.Unmarshal(data, &result); err != nil {
return err
}