Anyone noticed a problem compiling Classpath with Jikes 1.12?
Specifically with gnu/java/locale/LocaleInformation_de.java?
Although this file contains ASCII characters Jikes is misinterpreting
I think given the error messages like below. I've tried compiling
jikes with libiconv and this didn't help (or hurt).
Found 9 semantic errors compiling "../gnu/java/locale/LocaleInformation_de.java":
52. "&ae,\u00/$&Ae,\u00-$&oe,\u000&&Oe,\u00.&&ue,\u000,&Ue,\u00.,&ss,\u00./";
<----------------------------------->
*** Error: The value of this "String" literal is invalid. Perhaps it contains a bad
escape sequence?
57. private static final String[] months = { "Januar", "Februar", "M\u00/$rz",
<---->
*** Error: The value of this "String" literal is invalid. Perhaps it contains a
Line 52 is actually:
"&ae,�&Ae,�&oe,�&Oe,�&ue,�&Ue,�&ss,�";
Line 57 is actually:
private static final String[] months = { "Januar", "Februar", "M�rz",
Brian
--
Brian Jones <[EMAIL PROTECTED]>