ICU-10192 Fix the LanguageTag#toString() missing variant fields problem.

X-SVN-Rev: 33765
This commit is contained in:
Yoshito Umaoka 2013-05-28 20:16:17 +00:00
parent f3e6ed84be
commit 4ba8437677

View file

@ -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);
}