From: Tim P <ti...@us...> - 2008-03-20 22:24:45
|
Update of /cvsroot/webmacro/webmacro/src/org/webmacro/parser In directory sc8-pr-cvs9.sourceforge.net:/tmp/cvs-serv8694/src/org/webmacro/parser Modified Files: ParseException.java Log Message: Tabs Index: ParseException.java =================================================================== RCS file: /cvsroot/webmacro/webmacro/src/org/webmacro/parser/ParseException.java,v retrieving revision 1.6 retrieving revision 1.7 diff -C2 -d -r1.6 -r1.7 *** ParseException.java 30 Jul 2005 04:00:34 -0000 1.6 --- ParseException.java 20 Mar 2008 22:24:39 -0000 1.7 *************** *** 17,26 **** { ! /** ! * ! */ ! private static final long serialVersionUID = 1L; ! /** * This constructor is used by the method "generateParseException" * in the generated parser. Calling this constructor generates --- 17,23 ---- { ! private static final long serialVersionUID = 1L; ! /** * This constructor is used by the method "generateParseException" * in the generated parser. Calling this constructor generates *************** *** 209,222 **** default: if ((ch = str.charAt(i)) < 0x20 || ch > 0x7e) ! { String s = "0000" + Integer.toString(ch, 16); retval.append("\\u" + s.substring(s.length() - 4, s.length())); } ! else ! { retval.append(ch); } continue; ! } } return retval.toString(); --- 206,219 ---- default: if ((ch = str.charAt(i)) < 0x20 || ch > 0x7e) ! { String s = "0000" + Integer.toString(ch, 16); retval.append("\\u" + s.substring(s.length() - 4, s.length())); } ! else ! { retval.append(ch); } continue; ! } } return retval.toString(); |