Skip to content

Commit c7d92bb

Browse files
committed
code formatting fix
1 parent 1bd7932 commit c7d92bb

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

manualclock/wait.go

+7-7
Original file line numberDiff line numberDiff line change
@@ -22,13 +22,13 @@ import (
2222

2323
// nonwaiting represents the set of goroutine statuses that do not indicate waiting.
2424
var nonwaiting = map[string]struct{}{
25-
"idle": struct{}{},
26-
"runnable": struct{}{},
27-
"running": struct{}{},
28-
"syscall": struct{}{},
29-
"dead": struct{}{},
30-
"enqueue": struct{}{},
31-
"copystack": struct{}{},
25+
"idle": {},
26+
"runnable": {},
27+
"running": {},
28+
"syscall": {},
29+
"dead": {},
30+
"enqueue": {},
31+
"copystack": {},
3232
}
3333

3434
type waitpoint struct {

0 commit comments

Comments
 (0)