diff options
Diffstat (limited to 'core/memory.go')
-rw-r--r-- | core/memory.go | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/core/memory.go b/core/memory.go index e3063d6..3d8063d 100644 --- a/core/memory.go +++ b/core/memory.go @@ -38,9 +38,6 @@ func (o *MemoryObject) Size() int64 { return o.sz } // afterwards func (o *MemoryObject) SetSize(s int64) { o.sz = s } -// Content returns the contents of the object -func (o *MemoryObject) Content() []byte { return o.cont } - // Reader returns a ObjectReader used to read the object's content. func (o *MemoryObject) Reader() (ObjectReader, error) { return ioutil.NopCloser(bytes.NewBuffer(o.cont)), nil |