Paul Fisher wrote:
> Files that need to be fixed:
>
> java/awt/event/InputMethodEvent.java
Just write Java font support :)
>
> java/security/SecureClassLoader.java
I sent you a fix as I wait to get working GNU CVS.
>
> java/sql/DriverManager.java
Aaron's domain. The error is from calling a JDK 1.2 method.
Comment out the code and use
Thread.currentThread().getClass().getClassLoader(); instead which is a dirty
hack as it gets the ClassLoader of the current thread and should work but may
fail if it was the system class loader. I am not sure.
>
> java/text/ChoiceFormat.java
Aaron's domain.
public final StringBuffer format(Object number,
StringBuffer toAppendTo,
FieldPosition pos)
is not implemented in java.text.NumberFormat
public final StringBuffer format(Object number,
StringBuffer toAppendTo,
FieldPosition pos)
{
if( number instanceOf Number )
return format( ((Number)number).doubleValue()), toAppenndTo, pos );
else
throw new IllegalArgumentException("format requires a Number");
}
should work
Mark