ICU-6433 Fixed a problem detected by the Eclipse IDE warning.

X-SVN-Rev: 25589
This commit is contained in:
Yoshito Umaoka 2009-03-14 04:44:45 +00:00
parent a87a24e197
commit 3dc8afe743

View File

@ -300,7 +300,7 @@ public class CurrencyPluralInfo implements Cloneable, Serializable {
if (separatorIndex != -1) {
String negPattern = pattern;
String negWithNumber = Utility.replace(negPattern, "{0}", negNumberPattern);
String negWithCurrSign = Utility.replace(negPattern, "{1}", tripleCurrencyStr);
String negWithCurrSign = Utility.replace(negWithNumber, "{1}", tripleCurrencyStr);
StringBuffer posNegPatterns = new StringBuffer(patternWithCurrencySign);
posNegPatterns.append(";");
posNegPatterns.append(negWithCurrSign);