From mboxrd@z Thu Jan 1 00:00:00 1970 From: Anthony Green To: tromey@redhat.com Cc: java@gcc.gnu.org, rhug-rhats@sources.redhat.com Subject: Re: property files and character encodings Date: Mon, 10 Sep 2001 20:03:00 -0000 Message-id: <200109110303.UAA24057@fencer.cygnus.com> X-SW-Source: 2001-09/msg00019.html I came up with a patch of my own. Can I just check this in? 2001-09-10 Anthony Green * java/util/Properties.java: Increment index while parsing \u sequence. Index: libjava/java/util/Properties.java =================================================================== RCS file: /cvs/gcc/gcc/libjava/java/util/Properties.java,v retrieving revision 1.9 diff -c -u -r1.9 Properties.java --- Properties.java 2001/09/06 17:16:09 1.9 +++ Properties.java 2001/09/11 02:56:03 @@ -185,6 +185,7 @@ char uni = (char) Integer.parseInt (line.substring(pos, pos + 4), 16); key.append(uni); + pos += 4; } // else throw exception? break; default: AG