panic("unreachable") is no longer needed in go code

Konstantin Kulikov 2015-08-08 12:44:04 +03:00
parent 5630269425
commit 0b80d6a417

@ -162,7 +162,6 @@ func typeName(v interface{}) string {
default:
return "unknown"
}
panic("unreachable")
}
```