RuleBasedCollator.java (clone): Rewrote.
* java/text/RuleBasedCollator.java (clone): Rewrote. (RuleBasedCollator(RuleBasedCollator)): Removed. * java/text/MessageFormat.java: Re-merged from Classpath. * java/text/DecimalFormat.java: Re-merged from Classpath. From-SVN: r45458
This commit is contained in:
parent
cffb260138
commit
89066f10f5
4 changed files with 461 additions and 408 deletions
|
@ -350,21 +350,9 @@ public class DecimalFormat extends NumberFormat
|
|||
|
||||
public Object clone ()
|
||||
{
|
||||
return new DecimalFormat (this);
|
||||
}
|
||||
|
||||
private DecimalFormat (DecimalFormat dup)
|
||||
{
|
||||
decimalSeparatorAlwaysShown = dup.decimalSeparatorAlwaysShown;
|
||||
groupingSize = dup.groupingSize;
|
||||
minExponentDigits = dup.minExponentDigits;
|
||||
multiplier = dup.multiplier;
|
||||
negativePrefix = dup.negativePrefix;
|
||||
negativeSuffix = dup.negativeSuffix;
|
||||
positivePrefix = dup.positivePrefix;
|
||||
positiveSuffix = dup.positiveSuffix;
|
||||
symbols = (DecimalFormatSymbols) dup.symbols.clone();
|
||||
useExponentialNotation = dup.useExponentialNotation;
|
||||
DecimalFormat c = (DecimalFormat) super.clone ();
|
||||
c.symbols = (DecimalFormatSymbols) symbols.clone ();
|
||||
return c;
|
||||
}
|
||||
|
||||
public DecimalFormat ()
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue