From a937bff52ca4b0d2389e88915272029f3bc141d5 Mon Sep 17 00:00:00 2001 From: Rob Pike Date: Mon, 23 Jan 2012 08:40:34 -0800 Subject: [PATCH] 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 --- src/pkg/encoding/gob/debug.go | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/pkg/encoding/gob/debug.go b/src/pkg/encoding/gob/debug.go index 4a61d0fb2f8..6dc7fc9aca0 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.