mirror of
https://github.com/unicode-org/icu.git
synced 2025-04-17 18:56:53 +00:00
ICU-10192 Fix the LanguageTag#toString() missing variant fields problem.
X-SVN-Rev: 33765
This commit is contained in:
parent
f3e6ed84be
commit
4ba8437677
1 changed files with 2 additions and 2 deletions
|
@ -1,6 +1,6 @@
|
|||
/*
|
||||
*******************************************************************************
|
||||
* Copyright (C) 2010-2011, International Business Machines Corporation and *
|
||||
* Copyright (C) 2010-2013, International Business Machines Corporation and *
|
||||
* others. All Rights Reserved. *
|
||||
*******************************************************************************
|
||||
*/
|
||||
|
@ -700,7 +700,7 @@ public class LanguageTag {
|
|||
sb.append(SEP).append(_region);
|
||||
}
|
||||
|
||||
for (String variant : _extlangs) {
|
||||
for (String variant : _variants) {
|
||||
sb.append(SEP).append(variant);
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue