]> Cypherpunks repositories - gostls13.git/commitdiff
remove noisy print
authorRob Pike <r@golang.org>
Thu, 3 Apr 2008 23:59:46 +0000 (16:59 -0700)
committerRob Pike <r@golang.org>
Thu, 3 Apr 2008 23:59:46 +0000 (16:59 -0700)
SVN=114939

src/lib/container/vector.go

index 4b7c8ec0c0e493484826dc01891ec90bb6e31793..f08b340ab8f927dcf0d7ed04bf9fee57f0b835ee 100644 (file)
@@ -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);