aboutsummaryrefslogtreecommitdiff
path: root/src/lib/container
diff options
context:
space:
mode:
authorRob Pike <r@golang.org>2008-04-03 16:59:46 -0700
committerRob Pike <r@golang.org>2008-04-03 16:59:46 -0700
commit8cdb71017ad2ddc02101bf4badd97023ac5baec5 (patch)
treea18947048f774b577f85c75caabf20f6f00be679 /src/lib/container
parentb7490382464e35eca05d772b3c406e1698976e80 (diff)
downloadgo-8cdb71017ad2ddc02101bf4badd97023ac5baec5.tar.xz
remove noisy print
SVN=114939
Diffstat (limited to 'src/lib/container')
-rw-r--r--src/lib/container/vector.go1
1 files changed, 0 insertions, 1 deletions
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);