From 7379502cc9bc3bc14daf42083db9e49b4317793c Mon Sep 17 00:00:00 2001 From: Yu-Ju Hong Date: Thu, 19 Feb 2015 10:51:46 -0800 Subject: [PATCH] Run gofmt for hash.go to fix formatting errors --- pkg/util/hash.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkg/util/hash.go b/pkg/util/hash.go index b372ceaa8f6..c4dbe6e3455 100644 --- a/pkg/util/hash.go +++ b/pkg/util/hash.go @@ -26,6 +26,6 @@ import ( // which follows pointers and prints actual values of the nested objects // ensuring the hash does not change when a pointer changes. func DeepHashObject(hasher hash.Hash, objectToWrite interface{}) { - printer := spew.ConfigState{Indent: " ", SortKeys: true} - printer.Fprintf(hasher, "%#v", objectToWrite) + printer := spew.ConfigState{Indent: " ", SortKeys: true} + printer.Fprintf(hasher, "%#v", objectToWrite) }