From 7c9f0f010982930d3c4d49d0d6f0b9a8cd96258a Mon Sep 17 00:00:00 2001 From: Russ Cox Date: Thu, 23 Sep 2010 22:05:42 -0400 Subject: [PATCH] html: disable print Everything is incomplete. Let's not make noise like this a habit. R=nigeltao_gnome CC=golang-dev https://golang.org/cl/2272041 --- src/pkg/html/token.go | 6 ------ 1 file changed, 6 deletions(-) diff --git a/src/pkg/html/token.go b/src/pkg/html/token.go index 39f6700321..1137d948af 100644 --- a/src/pkg/html/token.go +++ b/src/pkg/html/token.go @@ -7,16 +7,10 @@ package html import ( "bytes" "io" - "log" "os" "strconv" ) -func init() { - // TODO(nigeltao): Remove this when ready. - log.Stderr("The html package is incomplete; do not use for production software.") -} - // A TokenType is the type of a Token. type TokenType int -- 2.48.1