good morning!!!!

Skip to content
Snippets Groups Projects
Commit df648cbc authored by Jeffrey Wilcke's avatar Jeffrey Wilcke
Browse files

Removed comments

parent 8a22cd5e
No related branches found
No related tags found
No related merge requests found
......@@ -26,21 +26,6 @@ func (m *Memory) Set(offset, size uint64, value []byte) {
if size > 0 {
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) {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment