Run gofmt for hash.go to fix formatting errors

This commit is contained in:
Yu-Ju Hong 2015-02-19 10:51:46 -08:00
parent 053dd7834e
commit 7379502cc9

View File

@ -26,6 +26,6 @@ import (
// which follows pointers and prints actual values of the nested objects // which follows pointers and prints actual values of the nested objects
// ensuring the hash does not change when a pointer changes. // ensuring the hash does not change when a pointer changes.
func DeepHashObject(hasher hash.Hash, objectToWrite interface{}) { func DeepHashObject(hasher hash.Hash, objectToWrite interface{}) {
printer := spew.ConfigState{Indent: " ", SortKeys: true} printer := spew.ConfigState{Indent: " ", SortKeys: true}
printer.Fprintf(hasher, "%#v", objectToWrite) printer.Fprintf(hasher, "%#v", objectToWrite)
} }