Removed comments

This commit is contained in:
obscuren 2015-03-27 16:11:19 +01:00
parent 8a22cd5e6c
commit df648cbc60

View File

@ -26,21 +26,6 @@ func (m *Memory) Set(offset, size uint64, value []byte) {
if size > 0 { if size > 0 {
copy(m.store[offset:offset+size], common.RightPadBytes(value, int(size))) copy(m.store[offset:offset+size], common.RightPadBytes(value, int(size)))
} }
/*
totSize := offset + size
lenSize := uint64(len(m.store) - 1)
if totSize > lenSize {
// Calculate the diff between the sizes
diff := totSize - lenSize
if diff > 0 {
// Create a new empty slice and append it
newSlice := make([]byte, diff-1)
// Resize slice
m.store = append(m.store, newSlice...)
}
}
*/
} }
func (m *Memory) Resize(size uint64) { func (m *Memory) Resize(size uint64) {