From: Rene S. <sa...@us...> - 2005-02-19 11:13:08
|
Update of /cvsroot/jake2/jake2/src/jake2/qcommon In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv18589/src/jake2/qcommon Modified Files: Cbuf.java Log Message: command line parameter bugs. Index: Cbuf.java =================================================================== RCS file: /cvsroot/jake2/jake2/src/jake2/qcommon/Cbuf.java,v retrieving revision 1.6 retrieving revision 1.7 diff -C2 -d -r1.6 -r1.7 *** Cbuf.java 17 Jan 2005 21:54:38 -0000 1.6 --- Cbuf.java 19 Feb 2005 11:12:42 -0000 1.7 *************** *** 117,125 **** i++; ! for (j = i; (text.charAt(j) != '+') && (text.charAt(j) != '-') ! && j < text.length(); j++) ! ; ! build += text.substring(i, j - 1); build += "\n"; --- 117,123 ---- i++; ! for (j = i; j < text.length() && (text.charAt(j) != '+') && (text.charAt(j) != '-'); j++); ! build += text.substring(i, j); build += "\n"; |