124125126127128129130131132133134
} String pattern = (String)localizedPatterns.get(locale); if (pattern != null) decimalFormat.applyLocalizedPattern(pattern); else if (nonLocalizedPattern != null) decimalFormat.applyPattern(nonLocalizedPattern); return decimalFormat; }
154155156157158159160161162163164