diff --git a/pkg/vm/stack/stack.go b/pkg/vm/stack/stack.go index 2a1b01693..eb08e5d52 100644 --- a/pkg/vm/stack/stack.go +++ b/pkg/vm/stack/stack.go @@ -23,11 +23,6 @@ func New() *RandomAccess { } } -// Items will return all items in the stack -func (ras *RandomAccess) items() []Item { - return ras.vals -} - //Len will return the length of the stack func (ras *RandomAccess) Len() int { if ras.vals == nil {