]> Cypherpunks repositories - gostls13.git/commit
fmt: make identification of string arguments consistent
authorMartin Möhrmann <martisch@uos.de>
Sat, 27 Feb 2016 19:55:50 +0000 (20:55 +0100)
committerDave Cheney <dave@cheney.net>
Tue, 1 Mar 2016 07:36:06 +0000 (07:36 +0000)
commit33c0ef2de3ba30a70b20433b14c45ccb06d02222
treefdbaa915ea8ce2f5b4b4a3d4d0aeb8cd1e7ffe01
parent8ad027c0c401a5b2d58679f8dac2b4c4f68c8ba0
fmt: make identification of string arguments consistent

Use only reflect.TypeOf to detect if argument is a string.

The wasString return is only needed in doPrint with the 'v' verb.
This type of string detection is handled correctly by reflect.TypeOf
which is used already in doPrint for identifying a string argument.

Remove now obsolete wasString computations and return values.

Change-Id: Iea2de7ac0f5c536a53eec63f7e679d628f5af8dc
Reviewed-on: https://go-review.googlesource.com/19976
Run-TryBot: Rob Pike <r@golang.org>
TryBot-Result: Gobot Gobot <gobot@golang.org>
Reviewed-by: Rob Pike <r@golang.org>
src/fmt/print.go