diff --git a/server/server/stack.go b/server/server/stack.go index 13c20ed..1d0606a 100644 --- a/server/server/stack.go +++ b/server/server/stack.go @@ -39,14 +39,12 @@ func (st *StringStack) Push(item interface{}) { } value, ok := item.(string) - if ok == false { panic(StackInvalidTypeError) } st.items[st.index] = value st.index++ - } func (st *StringStack) Pop() interface{} {