From: Rob Pike Date: Mon, 23 Jan 2012 16:40:34 +0000 (-0800) Subject: gob: annotate debug.go so it's not normally built X-Git-Tag: weekly.2012-01-27~95 X-Git-Url: http://www.git.cypherpunks.su/?a=commitdiff_plain;h=a937bff52ca4b0d2389e88915272029f3bc141d5;p=gostls13.git gob: annotate debug.go so it's not normally built So it's not included in the package by the go tool. R=iant, fullung, rsc CC=golang-dev https://golang.org/cl/5563049 --- diff --git a/src/pkg/encoding/gob/debug.go b/src/pkg/encoding/gob/debug.go index 4a61d0fb2f..6dc7fc9aca 100644 --- a/src/pkg/encoding/gob/debug.go +++ b/src/pkg/encoding/gob/debug.go @@ -2,6 +2,9 @@ // Use of this source code is governed by a BSD-style // license that can be found in the LICENSE file. +// Delete the next line to include this file in the gob package. +// +build ignore + package gob // This file is not normally included in the gob package. Used only for debugging the package itself.