You've already forked linux-packaging-mono
Imported Upstream version 4.4.0.40
Former-commit-id: 6427cc082e74df30afc535fd906a3494b74b0817
This commit is contained in:
@@ -288,7 +288,8 @@ namespace System
|
||||
var Istart = 0;
|
||||
while (Istart < str.Length && !char.IsLetterOrDigit(str[Istart])) Istart++;
|
||||
var Iend = str.Length - 1;
|
||||
while (Iend > Istart && !char.IsLetterOrDigit(str[Iend])) Iend--;
|
||||
while (Iend > Istart && !char.IsLetterOrDigit(str[Iend]) && str[Iend] != ')') // zone name can include parentheses like "Central Standard Time (Mexico)"
|
||||
Iend--;
|
||||
|
||||
return str.Substring (Istart, Iend-Istart+1);
|
||||
}
|
||||
|
Reference in New Issue
Block a user