remove duplicated assignment in v1/api.go (#647)
Signed-off-by: Guangming Wang <guangming.wang@daocloud.io>
This commit is contained in:
parent
20428fa0bf
commit
49b3f23433
|
@ -100,7 +100,6 @@ func marshalPointJSON(ptr unsafe.Pointer, stream *json.Stream) {
|
||||||
if abs != 0 {
|
if abs != 0 {
|
||||||
if abs < 1e-6 || abs >= 1e21 {
|
if abs < 1e-6 || abs >= 1e21 {
|
||||||
fmt = 'e'
|
fmt = 'e'
|
||||||
fmt = 'e'
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
buf = strconv.AppendFloat(buf, float64(p.Value), fmt, -1, 64)
|
buf = strconv.AppendFloat(buf, float64(p.Value), fmt, -1, 64)
|
||||||
|
|
Loading…
Reference in New Issue