From: Robert Griesemer Date: Mon, 20 Oct 2008 19:51:18 +0000 (-0700) Subject: - removed double-declaration of len() X-Git-Tag: weekly.2009-11-06~2944 X-Git-Url: http://www.git.cypherpunks.su/?a=commitdiff_plain;h=a11d5aecb828384b422088c08b75f1621e896a0e;p=gostls13.git - removed double-declaration of len() R=r OCL=17463 CL=17463 --- diff --git a/usr/gri/gosrc/globals.go b/usr/gri/gosrc/globals.go index 14e588ee9d..e971a1462d 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");