[multiple changes]
2004-04-20 Jeroen Frijters <jeroen@frijters.net> * java/text/DecimalFormat.java (scanFix): Removed suffix check for percent and permill check. 2004-04-20 Guilhem Lavaux <guilhem@kaffe.org> * java/text/FieldPosition.java (FieldPosition) Constructor now behaves as it should according to the java documentation. 2004-04-20 Mark Wielaard <mark@klomp.org> * java/util/Properties.java: Use the word umlaut, not ä in api documentation. From-SVN: r80910
This commit is contained in:
@@ -90,7 +90,7 @@ public class DecimalFormat extends NumberFormat
|
||||
else
|
||||
buf.append(syms.getCurrencySymbol());
|
||||
}
|
||||
else if (is_suffix && c == syms.getPercent())
|
||||
else if (c == syms.getPercent())
|
||||
{
|
||||
if (multiplierSet)
|
||||
throw new IllegalArgumentException ("multiplier already set " +
|
||||
@@ -99,7 +99,7 @@ public class DecimalFormat extends NumberFormat
|
||||
multiplier = 100;
|
||||
buf.append(c);
|
||||
}
|
||||
else if (is_suffix && c == syms.getPerMill())
|
||||
else if (c == syms.getPerMill())
|
||||
{
|
||||
if (multiplierSet)
|
||||
throw new IllegalArgumentException ("multiplier already set " +
|
||||
|
||||
Reference in New Issue
Block a user