NumberFormat.java (groupingUsed, [...]): Now package-private.
* java/text/NumberFormat.java (groupingUsed, parseIntegerOnly, maximumFractionDigits, maximumIntegerDigits, minimumFractionDigits, minimumIntegerDigits): Now package-private. From-SVN: r38274
This commit is contained in:
parent
8eb1306fb7
commit
13b7bc8a56
2 changed files with 11 additions and 6 deletions
|
@ -251,16 +251,16 @@ public abstract class NumberFormat extends Format implements Cloneable
|
|||
}
|
||||
|
||||
// These field names are fixed by the serialization spec.
|
||||
protected boolean groupingUsed;
|
||||
protected int maximumFractionDigits;
|
||||
boolean groupingUsed;
|
||||
int maximumFractionDigits;
|
||||
private byte maxFractionDigits;
|
||||
protected int maximumIntegerDigits;
|
||||
int maximumIntegerDigits;
|
||||
private byte maxIntegerDigits;
|
||||
protected int minimumFractionDigits;
|
||||
int minimumFractionDigits;
|
||||
private byte minFractionDigits;
|
||||
protected int minimumIntegerDigits;
|
||||
int minimumIntegerDigits;
|
||||
private byte minIntegerDigits;
|
||||
protected boolean parseIntegerOnly;
|
||||
boolean parseIntegerOnly;
|
||||
private int serialVersionOnStream;
|
||||
private static final long serialVersionUID = -2308460125733713944L;
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue