>>>>> ":" == Ito Kazumitsu <[EMAIL PROTECTED]> writes:

:> Hi,
:> Saxon 7.9.1 worked fine with kaffe whose ChangeLog head was:
:> 2004-05-14  Guilhem Lavaux <[EMAIL PROTECTED]>
:> 
:> But some of recent changes made kaffe incapable of running Saxon 7.9.1.

Here is a simple program which describes the difference.

import java.io.File;
public class Test {
    public static void main(String[] args) throws Exception {
        File f = new File(args[0]);
        System.out.println(f.toURI().toString());
    }
}

When run with kaffe of 2004-05-14:
bash-2.05b$ java Test 0
file:/home/kaz/javatest/0

When run with kaffe of 2004-05-27:
bash-2.05b$ java Test 0
file:#/home/kaz/javatest/0

_______________________________________________
kaffe mailing list
[EMAIL PROTECTED]
http://kaffe.org/cgi-bin/mailman/listinfo/kaffe

Reply via email to