From 35d18686183c88afe6a5455e3ded65781536f41c Mon Sep 17 00:00:00 2001 From: Mitchell Hashimoto Date: Wed, 19 Oct 2016 10:07:47 -0700 Subject: [PATCH] terraform: remove ModuleDiff.GoString To address comments by @jbardin re: if we had a mutex this will fail vet. --- terraform/diff.go | 4 ---- 1 file changed, 4 deletions(-) diff --git a/terraform/diff.go b/terraform/diff.go index 33b4a98962..e0e097e808 100644 --- a/terraform/diff.go +++ b/terraform/diff.go @@ -311,10 +311,6 @@ func (d *ModuleDiff) String() string { return buf.String() } -func (d *ModuleDiff) GoString() string { - return fmt.Sprintf("*%#v", *d) -} - // InstanceDiff is the diff of a resource from some state to another. type InstanceDiff struct { mu sync.Mutex