chore: remove commented code
This commit is contained in:
parent
bd3cbc694f
commit
c5441b2e16
|
@ -111,24 +111,4 @@ func (fv *FileVersion) CID() *encoding.CID {
|
||||||
return fv.PlaintextCID
|
return fv.PlaintextCID
|
||||||
}
|
}
|
||||||
return &fv.EncryptedCID.OriginalCID
|
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
|
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue