You've already forked linux-packaging-mono
Imported Upstream version 4.2.1.124
Former-commit-id: 3b6a300a4ce80578c93599ba6e26a8f66743cde0
This commit is contained in:
@ -1318,7 +1318,8 @@ namespace System
|
||||
else {
|
||||
abbrevs.Add (abbrev_index, sb.ToString ());
|
||||
//Adding all the substrings too, as it seems to be used, at least for Africa/Windhoek
|
||||
for (int j = 1; j < sb.Length; j++)
|
||||
//j == sb.Length empty substring also needs to be added #31432
|
||||
for (int j = 1; j <= sb.Length; j++)
|
||||
abbrevs.Add (abbrev_index + j, sb.ToString (j, sb.Length - j));
|
||||
abbrev_index = i + 1;
|
||||
sb = new StringBuilder ();
|
||||
|
Reference in New Issue
Block a user