From: Russ Cox Date: Fri, 24 Sep 2010 02:05:42 +0000 (-0400) Subject: html: disable print X-Git-Tag: weekly.2010-09-29~72 X-Git-Url: http://www.git.cypherpunks.su/?a=commitdiff_plain;h=7c9f0f010982930d3c4d49d0d6f0b9a8cd96258a;p=gostls13.git 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 --- 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