Re: BUG: Missing NumberFormat.format() (using DecimalFormat from libgcj)

1999-12-28 Thread Aaron M. Renn
Mark Wielaard ([EMAIL PROTECTED]) wrote: java.text.NumberFromat is missing a public final format(Object obj, StringBuffer sb, FieldPosition pos) method. (Since it is not very clearly documented I just made a choice to format Doubles/Floats as doubles and all other Numbers as longs. See the

Re: BUG: Missing NumberFormat.format() (using DecimalFormat from libgcj)

1999-12-28 Thread Mark Wielaard
Hi, On Tue, Dec 28, 1999 at 05:00:37PM -0600, Aaron M. Renn wrote: Mark Wielaard ([EMAIL PROTECTED]) wrote: java.text.NumberFromat is missing a public final [...] Did these patches get applied? This is part of where I think we might want to look at using the gjc implementation, because

BUG: Missing NumberFormat.format() (using DecimalFormat from libgcj)

1999-12-22 Thread Mark Wielaard
Hi, java.text.NumberFromat is missing a public final format(Object obj, StringBuffer sb, FieldPosition pos) method. (Since it is not very clearly documented I just made a choice to format Doubles/Floats as doubles and all other Numbers as longs. See the javadoc.) NumberFormat.diff attached.