1
0
mirror of https://github.com/v2fly/v2ray-core.git synced 2024-09-30 07:46:41 -04:00

optimize pickString

This commit is contained in:
Darien Raymond 2016-11-06 14:04:44 +01:00
parent edc5bbbb72
commit dc0cbce6e1
No known key found for this signature in database
GPG Key ID: 7251FFA14BB18169

View File

@ -35,10 +35,14 @@ func (this *Status) GetReason() string {
func pickString(arr []string) string {
n := len(arr)
if n == 0 {
switch n {
case 0:
return ""
case 1:
return arr[0]
default:
return arr[dice.Roll(n)]
}
return arr[dice.Roll(n)]
}
func (this *RequestConfig) PickUri() string {