2004-11-24 Jeroen Frijters <jeroen@frijters.net>
* java/text/MessageFormat.java (formatInternal): Made private. From-SVN: r91151
This commit is contained in:
parent
7ef527365f
commit
9cf1276586
2 changed files with 9 additions and 3 deletions
|
@ -1,3 +1,8 @@
|
|||
2004-11-24 Jeroen Frijters <jeroen@frijters.net>
|
||||
|
||||
* java/text/MessageFormat.java
|
||||
(formatInternal): Made private.
|
||||
|
||||
2004-11-24 Michael Koch <konqueror@gmx.de>
|
||||
|
||||
* java/nio/DirectByteBufferImpl.java
|
||||
|
|
|
@ -401,9 +401,10 @@ public class MessageFormat extends Format
|
|||
return formatInternal(arguments, appendBuf, fp, null);
|
||||
}
|
||||
|
||||
protected final StringBuffer formatInternal (Object arguments[], StringBuffer appendBuf,
|
||||
FieldPosition fp,
|
||||
FormatCharacterIterator output_iterator)
|
||||
private StringBuffer formatInternal (Object arguments[],
|
||||
StringBuffer appendBuf,
|
||||
FieldPosition fp,
|
||||
FormatCharacterIterator output_iterator)
|
||||
{
|
||||
appendBuf.append(leader);
|
||||
if (output_iterator != null)
|
||||
|
|
Loading…
Add table
Reference in a new issue