diff options
-rw-r--r-- | usr/gri/gosrc/globals.go | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/usr/gri/gosrc/globals.go b/usr/gri/gosrc/globals.go index 14e588ee9..e971a1462 100644 --- a/usr/gri/gosrc/globals.go +++ b/usr/gri/gosrc/globals.go @@ -190,11 +190,6 @@ func (obj *Object) Copy() *Object { // ---------------------------------------------------------------------------- // List methods -func (L* List) len_() int { - return L.len_; -} - - func (L *List) at(i int) *Elem { if i < 0 || L.len_ <= i { panic("index out of bounds"); |