From: Rob Pike Date: Thu, 3 Apr 2008 23:59:46 +0000 (-0700) Subject: remove noisy print X-Git-Tag: weekly.2009-11-06~3797 X-Git-Url: http://www.git.cypherpunks.su/?a=commitdiff_plain;h=8cdb71017ad2ddc02101bf4badd97023ac5baec5;p=gostls13.git remove noisy print SVN=114939 --- diff --git a/src/lib/container/vector.go b/src/lib/container/vector.go index 4b7c8ec0c0..f08b340ab8 100644 --- a/src/lib/container/vector.go +++ b/src/lib/container/vector.go @@ -27,7 +27,6 @@ type Vector struct { // BUG: workaround for non-constant allocation. // i must be a power of 10. func Alloc(i int) *[]Element { - print "Alloc ", i, "\n"; switch i { case 1: return new([1]Element);