On Jan 23, 2008 8:31 AM, Sami Siren <[EMAIL PROTECTED]> wrote:
> ...we should define the
> encoding we use for our .java files with something like the following
> and make sure our .java files are properly encoded...
We could do that, but it's IMHO safer to not use any non-ascii chars
in our source files.
I fixed the problem in revision 614446, using this:
final String expected = "Archim\u00E8de et Lius \u00E0
Ch\u00E2teauneuf...
assertEquals(expected,metadata.get(Metadata.RIGHTS));
Writing these escapes is a bit painful, but that should work
everywhere regardless of encoding.
-Bertrand