Skip to content

Commit 07e6b41

Browse files
committed
Fix code style
1 parent a646bd9 commit 07e6b41

File tree

1 file changed

+0
-3
lines changed

1 file changed

+0
-3
lines changed

vm/runtime/runtime.go

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -260,7 +260,6 @@ func Negate(i interface{}) interface{} {
260260
return -v
261261
case float64:
262262
return -v
263-
264263
case int:
265264
return -v
266265
case int8:
@@ -271,7 +270,6 @@ func Negate(i interface{}) interface{} {
271270
return -v
272271
case int64:
273272
return -v
274-
275273
case uint:
276274
return -v
277275
case uint8:
@@ -282,7 +280,6 @@ func Negate(i interface{}) interface{} {
282280
return -v
283281
case uint64:
284282
return -v
285-
286283
default:
287284
panic(fmt.Sprintf("invalid operation: - %T", v))
288285
}

0 commit comments

Comments
 (0)