added changes

This commit is contained in:
Harshil Goel
2025-07-03 23:21:53 +05:30
parent 5fcfbbee53
commit 6f478a6250
-2
View File
@@ -6,7 +6,6 @@
package skl
import (
"fmt"
"sync/atomic"
"unsafe"
@@ -102,7 +101,6 @@ func (s *Arena) getNode(offset uint32) *node {
// getKey returns byte slice at offset.
func (s *Arena) getKey(offset uint32, size uint16) []byte {
fmt.Println("GET KEY", offset, size)
return s.buf[offset : offset+uint32(size)]
}