1
0
mirror of https://github.com/v2fly/v2ray-core.git synced 2024-12-22 01:57:12 -05:00

update Must2

This commit is contained in:
Darien Raymond 2018-02-21 21:42:33 +01:00
parent 88b25d38cb
commit 098244530b
No known key found for this signature in database
GPG Key ID: 7251FFA14BB18169

View File

@ -11,9 +11,8 @@ func Must(err error) {
}
}
// Must2 panics if the second parameter is not nil.
func Must2(v interface{}, err error) {
if err != nil {
panic(err)
}
// Must2 panics if the second parameter is not nil, otherwise returns the first parameter.
func Must2(v interface{}, err error) interface{} {
Must(err)
return v
}