diff options
Diffstat (limited to 'src/pkg/strconv/decimal.go')
-rw-r--r-- | src/pkg/strconv/decimal.go | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/src/pkg/strconv/decimal.go b/src/pkg/strconv/decimal.go index 6772c0961..72165ea02 100644 --- a/src/pkg/strconv/decimal.go +++ b/src/pkg/strconv/decimal.go @@ -269,10 +269,6 @@ func leftShift(a *decimal, k uint) { n = quo; } - if w != 0 { - // TODO: Remove - has no business panicking. - panicln("strconv: bad leftShift", w); - } a.nd += delta; a.dp += delta; trim(a); |